Skip to content

Commit 8bd1521

Browse files
committed
Release v0.2.2
1 parent ef6810e commit 8bd1521

File tree

8 files changed

+286
-37
lines changed

8 files changed

+286
-37
lines changed

.gitattributes

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,27 @@
4040
*.mov binary
4141

4242
# Override what is considered "vendored" by GitHub's linguist:
43-
/deps/** linguist-vendored=false
44-
/lib/node_modules/** linguist-vendored=false linguist-generated=false
45-
test/fixtures/** linguist-vendored=false
46-
tools/** linguist-vendored=false
43+
/lib/node_modules/** -linguist-vendored -linguist-generated
4744

48-
# Override what is considered "documentation" by GitHub's linguist:
49-
examples/** linguist-documentation=false
45+
# Configure directories which should *not* be included in GitHub language statistics:
46+
/deps/** linguist-vendored
47+
/dist/** linguist-generated
48+
/workshops/** linguist-vendored
49+
50+
benchmark/** linguist-vendored
51+
docs/* linguist-documentation
52+
etc/** linguist-vendored
53+
examples/** linguist-documentation
54+
scripts/** linguist-vendored
55+
test/** linguist-vendored
56+
tools/** linguist-vendored
57+
58+
# Configure files which should *not* be included in GitHub language statistics:
59+
Makefile linguist-vendored
60+
*.mk linguist-vendored
61+
*.jl linguist-vendored
62+
*.py linguist-vendored
63+
*.R linguist-vendored
64+
65+
# Configure files which should be included in GitHub language statistics:
66+
docs/types/*.d.ts -linguist-documentation

.github/workflows/productionize.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ jobs:
9494
node -e "var pkg = require( './package.json' ); pkg.dependencies[ '@stdlib/error-tools-fmtprodmsg' ] = '^$PKG_VERSION'; require( 'fs' ).writeFileSync( 'package.json', JSON.stringify( pkg, null, 2 ) );"
9595
fi
9696
97-
# Configure git:
98-
- name: 'Configure git'
97+
# Configure Git:
98+
- name: 'Configure Git'
9999
run: |
100100
git config --local user.email "[email protected]"
101101
git config --local user.name "stdlib-bot"
@@ -191,8 +191,8 @@ jobs:
191191
# Pin action to full length commit SHA
192192
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
193193

194-
# Configure git:
195-
- name: 'Configure git'
194+
# Configure Git:
195+
- name: 'Configure Git'
196196
run: |
197197
git config --local user.email "[email protected]"
198198
git config --local user.name "stdlib-bot"
@@ -366,8 +366,8 @@ jobs:
366366
# Pin action to full length commit SHA
367367
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
368368

369-
# Configure git:
370-
- name: 'Configure git'
369+
# Configure Git:
370+
- name: 'Configure Git'
371371
run: |
372372
git config --local user.email "[email protected]"
373373
git config --local user.name "stdlib-bot"
@@ -539,8 +539,8 @@ jobs:
539539
# Pin action to full length commit SHA
540540
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
541541

542-
# Configure git:
543-
- name: 'Configure git'
542+
# Configure Git:
543+
- name: 'Configure Git'
544544
run: |
545545
git config --local user.email "[email protected]"
546546
git config --local user.name "stdlib-bot"
@@ -735,8 +735,8 @@ jobs:
735735
echo "bump=true" >> $GITHUB_OUTPUT
736736
fi
737737
738-
# Configure git:
739-
- name: 'Configure git'
738+
# Configure Git:
739+
- name: 'Configure Git'
740740
if: steps.check-if-bump.outputs.bump
741741
run: |
742742
git config --local user.email "[email protected]"

.github/workflows/publish.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ jobs:
7272
node-version: 20
7373
timeout-minutes: 5
7474

75-
# Configure git:
76-
- name: 'Configure git'
75+
# Configure Git:
76+
- name: 'Configure Git'
7777
run: |
7878
git config --local user.email "[email protected]"
7979
git config --local user.name "stdlib-bot"
@@ -94,6 +94,10 @@ jobs:
9494
# Replace branch in README.md link definitions for badges with the new version:
9595
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/branch([=:])[^ ]+/branch\1v${NEW_VERSION}/g"
9696
97+
# Rewrite CHANGELOG.md to replace "Unreleased" with the new version:
98+
sed -Ei "s/Unreleased/${NEW_VERSION}/g" CHANGELOG.md
99+
sed -Ei "s/unreleased/v${NEW_VERSION}/g" CHANGELOG.md
100+
97101
# Create a new commit and tag:
98102
git add package.json README.md
99103
git commit -m "Release v${NEW_VERSION}"
@@ -202,7 +206,7 @@ jobs:
202206
# Publish package to npm:
203207
- name: 'Publish package to npm'
204208
# Pin action to full length commit SHA
205-
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 # v3.0.1
209+
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
206210
with:
207211
token: ${{ secrets.NPM_TOKEN }}
208212
access: public

.npmrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ shrinkwrap = false
2727
# Disable automatically "saving" dependencies on install:
2828
save = false
2929

30-
# Generate provenance metadata:
31-
provenance = true
30+
# Do not generate provenance metadata:
31+
provenance = false

CHANGELOG.md

Lines changed: 219 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,222 @@
22

33
> Package changelog.
44
5-
See [GitHub Releases](https://github.com/stdlib-js/number-float32-base-to-binary-string/releases) for the changelog.
5+
<section class="release" id="v0.2.2">
6+
7+
## 0.2.2 (2024-07-28)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`41d41e9`](https://github.com/stdlib-js/stdlib/commit/41d41e959b4eaad3c631e6898e3144a4015a5458) - **test:** include trailing newlines in Julia-generated JSON fixtures _(by Philipp Burckhardt)_
16+
- [`9ed7d0e`](https://github.com/stdlib-js/stdlib/commit/9ed7d0e7d57edb5ad0dfb65c944bed87d475cbf3) - **chore:** add missing trailing newlines _(by Philipp Burckhardt)_
17+
18+
</details>
19+
20+
</section>
21+
22+
<!-- /.commits -->
23+
24+
<section class="contributors">
25+
26+
### Contributors
27+
28+
A total of 1 person contributed to this release. Thank you to this contributor:
29+
30+
- Philipp Burckhardt
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
40+
<section class="release" id="v0.2.1">
41+
42+
## 0.2.1 (2024-02-24)
43+
44+
No changes reported for this release.
45+
46+
</section>
47+
48+
<!-- /.release -->
49+
50+
<section class="release" id="v0.2.0">
51+
52+
## 0.2.0 (2024-02-14)
53+
54+
<section class="commits">
55+
56+
### Commits
57+
58+
<details>
59+
60+
- [`dea49e0`](https://github.com/stdlib-js/stdlib/commit/dea49e03ab5571233e3da26835a6a6d3256d5737) - **docs:** use single quotes in require calls instead of backticks _(by Philipp Burckhardt)_
61+
- [`9a75516`](https://github.com/stdlib-js/stdlib/commit/9a7551640d420e985f4d2c68d0f82f0ab2ecaf9e) - **docs:** fix variable declarations _(by Athan Reines)_
62+
- [`66c2911`](https://github.com/stdlib-js/stdlib/commit/66c29117b42d0c8d2b277f9f05b987e01dab9c5b) - **docs:** update links _(by Athan Reines)_
63+
64+
</details>
65+
66+
</section>
67+
68+
<!-- /.commits -->
69+
70+
<section class="contributors">
71+
72+
### Contributors
73+
74+
A total of 2 people contributed to this release. Thank you to the following contributors:
75+
76+
- Athan Reines
77+
- Philipp Burckhardt
78+
79+
</section>
80+
81+
<!-- /.contributors -->
82+
83+
</section>
84+
85+
<!-- /.release -->
86+
87+
<section class="release" id="v0.1.1">
88+
89+
## 0.1.1 (2023-10-10)
90+
91+
No changes reported for this release.
92+
93+
</section>
94+
95+
<!-- /.release -->
96+
97+
<section class="release" id="v0.1.0">
98+
99+
## 0.1.0 (2023-09-23)
100+
101+
<section class="features">
102+
103+
### Features
104+
105+
- [`898e8e4`](https://github.com/stdlib-js/stdlib/commit/898e8e45b2ff0b16c3b7a04786f4e2577422f5b6) - update minimum TypeScript version
106+
107+
</section>
108+
109+
<!-- /.features -->
110+
111+
<section class="breaking-changes">
112+
113+
### BREAKING CHANGES
114+
115+
- [`898e8e4`](https://github.com/stdlib-js/stdlib/commit/898e8e45b2ff0b16c3b7a04786f4e2577422f5b6): update minimum TypeScript version
116+
- [`898e8e4`](https://github.com/stdlib-js/stdlib/commit/898e8e45b2ff0b16c3b7a04786f4e2577422f5b6): update minimum TypeScript version to 4.1
117+
118+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
119+
120+
</section>
121+
122+
<!-- /.breaking-changes -->
123+
124+
<section class="commits">
125+
126+
### Commits
127+
128+
<details>
129+
130+
- [`898e8e4`](https://github.com/stdlib-js/stdlib/commit/898e8e45b2ff0b16c3b7a04786f4e2577422f5b6) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
131+
132+
</details>
133+
134+
</section>
135+
136+
<!-- /.commits -->
137+
138+
<section class="contributors">
139+
140+
### Contributors
141+
142+
A total of 1 person contributed to this release. Thank you to this contributor:
143+
144+
- Philipp Burckhardt
145+
146+
</section>
147+
148+
<!-- /.contributors -->
149+
150+
</section>
151+
152+
<!-- /.release -->
153+
154+
<section class="release" id="v0.0.7">
155+
156+
## 0.0.7 (2022-07-12)
157+
158+
No changes reported for this release.
159+
160+
</section>
161+
162+
<!-- /.release -->
163+
164+
<section class="release" id="v0.0.6">
165+
166+
## 0.0.6 (2022-02-16)
167+
168+
No changes reported for this release.
169+
170+
</section>
171+
172+
<!-- /.release -->
173+
174+
<section class="release" id="v0.0.5">
175+
176+
## 0.0.5 (2021-08-23)
177+
178+
No changes reported for this release.
179+
180+
</section>
181+
182+
<!-- /.release -->
183+
184+
<section class="release" id="v0.0.4">
185+
186+
## 0.0.4 (2021-07-07)
187+
188+
No changes reported for this release.
189+
190+
</section>
191+
192+
<!-- /.release -->
193+
194+
<section class="release" id="v0.0.3">
195+
196+
## 0.0.3 (2021-06-28)
197+
198+
No changes reported for this release.
199+
200+
</section>
201+
202+
<!-- /.release -->
203+
204+
<section class="release" id="v0.0.2">
205+
206+
## 0.0.2 (2021-06-16)
207+
208+
No changes reported for this release.
209+
210+
</section>
211+
212+
<!-- /.release -->
213+
214+
<section class="release" id="v0.0.1">
215+
216+
## 0.0.1 (2021-06-15)
217+
218+
No changes reported for this release.
219+
220+
</section>
221+
222+
<!-- /.release -->
223+

0 commit comments

Comments
 (0)