Skip to content

Commit 33475cb

Browse files
committed
Release v0.3.0
1 parent 260267b commit 33475cb

File tree

9 files changed

+210
-26
lines changed

9 files changed

+210
-26
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.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 "noreply@stdlib.io"
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 "noreply@stdlib.io"
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 "noreply@stdlib.io"
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 "noreply@stdlib.io"
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 "noreply@stdlib.io"

.github/workflows/publish.yml

Lines changed: 3 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 "noreply@stdlib.io"
7979
git config --local user.name "stdlib-bot"
@@ -206,7 +206,7 @@ jobs:
206206
# Publish package to npm:
207207
- name: 'Publish package to npm'
208208
# Pin action to full length commit SHA
209-
uses: JS-DevTools/npm-publish@4b07b26a2f6e0a51846e1870223e545bae91c552 # v3.0.1
209+
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
210210
with:
211211
token: ${{ secrets.NPM_TOKEN }}
212212
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: 189 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,41 @@
22

33
> Package changelog.
44
5-
<section class="release" id="unreleased">
5+
<section class="release" id="v0.3.0">
66

7-
## Unreleased (2024-07-01)
7+
## 0.3.0 (2024-07-27)
8+
9+
<section class="features">
10+
11+
### Features
12+
13+
- [`c17484a`](https://github.com/stdlib-js/stdlib/commit/c17484ad1830ddfdb3abbe96589b406096e389e1) - add C implementation for `math/base/special/fast/uint32-log2` [(#1946)](https://github.com/stdlib-js/stdlib/pull/1946)
14+
15+
</section>
16+
17+
<!-- /.features -->
18+
19+
<section class="issues">
20+
21+
### Closed Issues
22+
23+
This release closes the following issue:
24+
25+
[#1931 ](https://github.com/stdlib-js/stdlib/issues/1931 )
26+
27+
</section>
28+
29+
<!-- /.issues -->
830

931
<section class="commits">
1032

1133
### Commits
1234

1335
<details>
1436

15-
- [`a591e05`](https://github.com/stdlib-js/stdlib/commit/a591e052cf1b1515c267781b914c6a482e150425) - **test:** fix test configuration _(by Athan Reines)_
37+
- [`d04dcbd`](https://github.com/stdlib-js/stdlib/commit/d04dcbd6dc3b0bf4a89bd3947d317fa5ff15bb38) - **docs:** remove private annotations in C comments _(by Philipp Burckhardt)_
38+
- [`f36cfab`](https://github.com/stdlib-js/stdlib/commit/f36cfab3875404fd9c58b6e2a6fedca5e04cb4d9) - **chore:** update package meta data [(#2014)](https://github.com/stdlib-js/stdlib/pull/2014) _(by stdlib-bot)_
39+
- [`c17484a`](https://github.com/stdlib-js/stdlib/commit/c17484ad1830ddfdb3abbe96589b406096e389e1) - **feat:** add C implementation for `math/base/special/fast/uint32-log2` [(#1946)](https://github.com/stdlib-js/stdlib/pull/1946) _(by Rutam, Athan Reines, Pranav Goswami)_
1640

1741
</details>
1842

@@ -24,9 +48,12 @@
2448

2549
### Contributors
2650

27-
A total of 1 person contributed to this release. Thank you to this contributor:
51+
A total of 4 people contributed to this release. Thank you to the following contributors:
2852

2953
- Athan Reines
54+
- Philipp Burckhardt
55+
- Pranav Goswami
56+
- Rutam
3057

3158
</section>
3259

@@ -36,3 +63,161 @@ A total of 1 person contributed to this release. Thank you to this contributor:
3663

3764
<!-- /.release -->
3865

66+
<section class="release" id="v0.2.1">
67+
68+
## 0.2.1 (2024-02-21)
69+
70+
No changes reported for this release.
71+
72+
</section>
73+
74+
<!-- /.release -->
75+
76+
<section class="release" id="v0.2.0">
77+
78+
## 0.2.0 (2024-02-14)
79+
80+
No changes reported for this release.
81+
82+
</section>
83+
84+
<!-- /.release -->
85+
86+
<section class="release" id="v0.1.1">
87+
88+
## 0.1.1 (2023-10-03)
89+
90+
No changes reported for this release.
91+
92+
</section>
93+
94+
<!-- /.release -->
95+
96+
<section class="release" id="v0.1.0">
97+
98+
## 0.1.0 (2023-09-22)
99+
100+
<section class="features">
101+
102+
### Features
103+
104+
- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9) - update minimum TypeScript version
105+
106+
</section>
107+
108+
<!-- /.features -->
109+
110+
<section class="breaking-changes">
111+
112+
### BREAKING CHANGES
113+
114+
- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9): update minimum TypeScript version
115+
- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9): update minimum TypeScript version to 4.1
116+
117+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
118+
119+
</section>
120+
121+
<!-- /.breaking-changes -->
122+
123+
<section class="commits">
124+
125+
### Commits
126+
127+
<details>
128+
129+
- [`58832ee`](https://github.com/stdlib-js/stdlib/commit/58832eef6d93e6519622148242600eae93dca4d9) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
130+
- [`a37ebe2`](https://github.com/stdlib-js/stdlib/commit/a37ebe2b277b2b54f00377b8582d309c65ec33ce) - **docs:** remove empty lines _(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-02-16)
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 (2021-08-22)
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-07-06)
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-06-27)
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-16)
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-15)
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-14)
217+
218+
No changes reported for this release.
219+
220+
</section>
221+
222+
<!-- /.release -->
223+

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Muhammad Haris <harriskhan047@outlook.com>
5151
Naresh Jagadeesan <naresh.naresh000@gmail.com>
5252
NightKnight <Ahmedatwa866@yahoo.com>
5353
Nithin Katta <88046362+nithinkatta@users.noreply.github.com>
54+
Nourhan Hasan <109472010+TheNourhan@users.noreply.github.com>
5455
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
5556
Oneday12323 <107678750+Oneday12323@users.noreply.github.com>
5657
Philipp Burckhardt <pburckhardt@outlook.com>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
265265
[npm-image]: http://img.shields.io/npm/v/@stdlib/math-base-special-fast-uint32-log2.svg
266266
[npm-url]: https://npmjs.org/package/@stdlib/math-base-special-fast-uint32-log2
267267

268-
[test-image]: https://github.com/stdlib-js/math-base-special-fast-uint32-log2/actions/workflows/test.yml/badge.svg?branch=main
269-
[test-url]: https://github.com/stdlib-js/math-base-special-fast-uint32-log2/actions/workflows/test.yml?query=branch:main
268+
[test-image]: https://github.com/stdlib-js/math-base-special-fast-uint32-log2/actions/workflows/test.yml/badge.svg?branch=v0.3.0
269+
[test-url]: https://github.com/stdlib-js/math-base-special-fast-uint32-log2/actions/workflows/test.yml?query=branch:v0.3.0
270270

271271
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-special-fast-uint32-log2/main.svg
272272
[coverage-url]: https://codecov.io/github/stdlib-js/math-base-special-fast-uint32-log2?branch=main

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/math-base-special-fast-uint32-log2",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"description": "Compute an integer binary logarithm (base two).",
55
"license": "Apache-2.0",
66
"author": {
@@ -41,7 +41,7 @@
4141
},
4242
"dependencies": {
4343
"@stdlib/napi-argv-uint32": "^0.2.1",
44-
"@stdlib/napi-export": "^0.2.1",
44+
"@stdlib/napi-export": "^0.2.2",
4545
"@stdlib/utils-library-manifest": "^0.2.1"
4646
},
4747
"devDependencies": {
@@ -50,7 +50,7 @@
5050
"@stdlib/math-base-special-log2": "^0.2.1",
5151
"@stdlib/math-base-special-pow": "^0.2.1",
5252
"@stdlib/random-base-minstd-shuffle": "^0.2.1",
53-
"@stdlib/utils-try-require": "^0.2.1",
53+
"@stdlib/utils-try-require": "^0.2.2",
5454
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5555
"istanbul": "^0.4.1",
5656
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

src/addon.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
/**
2626
* Receives JavaScript callback invocation data.
2727
*
28-
* @private
2928
* @param env environment under which the function is invoked
3029
* @param info callback data
3130
* @return Node-API value

0 commit comments

Comments
 (0)