Skip to content

Commit b73240d

Browse files
committed
Release v0.2.2
1 parent adc15fa commit b73240d

File tree

7 files changed

+258
-26
lines changed

7 files changed

+258
-26
lines changed

.github/workflows/productionize.yml

+10-10
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

+7-3
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"
@@ -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

+2-2
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

+227-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,230 @@
22

33
> Package changelog.
44
5-
See [GitHub Releases](https://github.com/stdlib-js/assert-is-same-value/releases) for the changelog.
5+
<section class="release" id="v0.2.2">
6+
7+
## 0.2.2 (2024-07-27)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`bab31c8`](https://github.com/stdlib-js/stdlib/commit/bab31c85d8793ebae625c2b5146a714294e3003f) - **refactor:** update paths _(by Athan Reines)_
16+
- [`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_
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+
- Athan Reines
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-22)
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="features">
55+
56+
### Features
57+
58+
- [`5c01d25`](https://github.com/stdlib-js/stdlib/commit/5c01d258ced2e4946317fab531ba52e7173a3448) - add support for complex number objects
59+
60+
</section>
61+
62+
<!-- /.features -->
63+
64+
<section class="commits">
65+
66+
### Commits
67+
68+
<details>
69+
70+
- [`d8cc963`](https://github.com/stdlib-js/stdlib/commit/d8cc96345ccb3cfc89383f339d4a92eedbdb724d) - **docs:** update note _(by Athan Reines)_
71+
- [`5c01d25`](https://github.com/stdlib-js/stdlib/commit/5c01d258ced2e4946317fab531ba52e7173a3448) - **feat:** add support for complex number objects _(by Athan Reines)_
72+
73+
</details>
74+
75+
</section>
76+
77+
<!-- /.commits -->
78+
79+
<section class="contributors">
80+
81+
### Contributors
82+
83+
A total of 1 person contributed to this release. Thank you to this contributor:
84+
85+
- Athan Reines
86+
87+
</section>
88+
89+
<!-- /.contributors -->
90+
91+
</section>
92+
93+
<!-- /.release -->
94+
95+
<section class="release" id="v0.1.1">
96+
97+
## 0.1.1 (2023-10-03)
98+
99+
No changes reported for this release.
100+
101+
</section>
102+
103+
<!-- /.release -->
104+
105+
<section class="release" id="v0.1.0">
106+
107+
## 0.1.0 (2023-09-22)
108+
109+
<section class="features">
110+
111+
### Features
112+
113+
- [`5200ce2`](https://github.com/stdlib-js/stdlib/commit/5200ce2447b32d7a8d351daa5b1868194878d7be) - update minimum TypeScript version
114+
115+
</section>
116+
117+
<!-- /.features -->
118+
119+
<section class="breaking-changes">
120+
121+
### BREAKING CHANGES
122+
123+
- [`5200ce2`](https://github.com/stdlib-js/stdlib/commit/5200ce2447b32d7a8d351daa5b1868194878d7be): update minimum TypeScript version
124+
- [`5200ce2`](https://github.com/stdlib-js/stdlib/commit/5200ce2447b32d7a8d351daa5b1868194878d7be): update minimum TypeScript version to 4.1
125+
126+
- To migrate, users should upgrade their TypeScript version to at least version 4.1.
127+
128+
</section>
129+
130+
<!-- /.breaking-changes -->
131+
132+
<section class="commits">
133+
134+
### Commits
135+
136+
<details>
137+
138+
- [`5200ce2`](https://github.com/stdlib-js/stdlib/commit/5200ce2447b32d7a8d351daa5b1868194878d7be) - **feat:** update minimum TypeScript version _(by Philipp Burckhardt)_
139+
140+
</details>
141+
142+
</section>
143+
144+
<!-- /.commits -->
145+
146+
<section class="contributors">
147+
148+
### Contributors
149+
150+
A total of 1 person contributed to this release. Thank you to this contributor:
151+
152+
- Philipp Burckhardt
153+
154+
</section>
155+
156+
<!-- /.contributors -->
157+
158+
</section>
159+
160+
<!-- /.release -->
161+
162+
<section class="release" id="v0.0.7">
163+
164+
## 0.0.7 (2022-02-16)
165+
166+
No changes reported for this release.
167+
168+
</section>
169+
170+
<!-- /.release -->
171+
172+
<section class="release" id="v0.0.6">
173+
174+
## 0.0.6 (2021-08-22)
175+
176+
No changes reported for this release.
177+
178+
</section>
179+
180+
<!-- /.release -->
181+
182+
<section class="release" id="v0.0.5">
183+
184+
## 0.0.5 (2021-07-06)
185+
186+
No changes reported for this release.
187+
188+
</section>
189+
190+
<!-- /.release -->
191+
192+
<section class="release" id="v0.0.4">
193+
194+
## 0.0.4 (2021-06-27)
195+
196+
No changes reported for this release.
197+
198+
</section>
199+
200+
<!-- /.release -->
201+
202+
<section class="release" id="v0.0.3">
203+
204+
## 0.0.3 (2021-06-16)
205+
206+
No changes reported for this release.
207+
208+
</section>
209+
210+
<!-- /.release -->
211+
212+
<section class="release" id="v0.0.2">
213+
214+
## 0.0.2 (2021-06-15)
215+
216+
No changes reported for this release.
217+
218+
</section>
219+
220+
<!-- /.release -->
221+
222+
<section class="release" id="v0.0.1">
223+
224+
## 0.0.1 (2021-06-14)
225+
226+
No changes reported for this release.
227+
228+
</section>
229+
230+
<!-- /.release -->
231+

CONTRIBUTORS

+3-1
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>
@@ -63,6 +64,7 @@ Pushpendra Chandravanshi <pushpendrachandravanshi4@gmail.com>
6364
Raunak Kumar Gupta <raunakmodanwal321@gmail.com>
6465
Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com>
6566
Ricky Reusser <rsreusser@gmail.com>
67+
Ridam Garg <67867319+RidamGarg@users.noreply.github.com>
6668
Robert Gislason <gztown2216@yahoo.com>
6769
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
6870
Rutam <138517416+performant23@users.noreply.github.com>
@@ -75,7 +77,7 @@ Shraddheya Shendre <shendreshraddheya@gmail.com>
7577
Shubh Mehta <93862397+Shubh942@users.noreply.github.com>
7678
Shubham Mishra <shubh622005@gmail.com>
7779
Sivam Das <100067002+Sivam2313@users.noreply.github.com>
78-
Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com>
80+
Snehil Shah <snehilshah.989@gmail.com>
7981
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
8082
Spandan Barve <contact@marsian.dev>
8183
Stephannie Jiménez Gacha <steff456@hotmail.com>

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
214214
[npm-image]: http://img.shields.io/npm/v/@stdlib/assert-is-same-value.svg
215215
[npm-url]: https://npmjs.org/package/@stdlib/assert-is-same-value
216216

217-
[test-image]: https://github.com/stdlib-js/assert-is-same-value/actions/workflows/test.yml/badge.svg?branch=main
218-
[test-url]: https://github.com/stdlib-js/assert-is-same-value/actions/workflows/test.yml?query=branch:main
217+
[test-image]: https://github.com/stdlib-js/assert-is-same-value/actions/workflows/test.yml/badge.svg?branch=v0.2.2
218+
[test-url]: https://github.com/stdlib-js/assert-is-same-value/actions/workflows/test.yml?query=branch:v0.2.2
219219

220220
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-same-value/main.svg
221221
[coverage-url]: https://codecov.io/github/stdlib-js/assert-is-same-value?branch=main

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/assert-is-same-value",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Test if two arguments are the same value.",
55
"license": "Apache-2.0",
66
"author": {
@@ -38,14 +38,14 @@
3838
},
3939
"dependencies": {
4040
"@stdlib/assert-is-complex-like": "^0.2.1",
41-
"@stdlib/complex-float64-base-assert-is-same-value": "github:stdlib-js/complex-float64-base-assert-is-same-value#main"
41+
"@stdlib/complex-float64-base-assert-is-same-value": "^0.0.1"
4242
},
4343
"devDependencies": {
44-
"@stdlib/assert-is-boolean": "^0.2.1",
45-
"@stdlib/boolean-ctor": "^0.2.1",
46-
"@stdlib/complex-float32-ctor": "github:stdlib-js/complex-float32-ctor#main",
47-
"@stdlib/complex-float64-ctor": "github:stdlib-js/complex-float64-ctor#main",
48-
"@stdlib/number-ctor": "^0.2.1",
44+
"@stdlib/assert-is-boolean": "^0.2.2",
45+
"@stdlib/boolean-ctor": "^0.2.2",
46+
"@stdlib/complex-float32-ctor": "^0.0.2",
47+
"@stdlib/complex-float64-ctor": "^0.0.2",
48+
"@stdlib/number-ctor": "^0.2.2",
4949
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5050
"istanbul": "^0.4.1",
5151
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

0 commit comments

Comments
 (0)