File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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}"
Original file line number Diff line number Diff line change 22
33> Package changelog.
44
5- See [ GitHub Releases] ( https://github.com/stdlib-js/complex-float64-ctor/releases ) for the changelog.
5+ <section class =" release " id =" v0.0.1 " >
6+
7+ ## 0.0.1 (2024-06-19)
8+
9+ <section class =" features " >
10+
11+ ### Features
12+
13+ - [ ` 2efc790 ` ] ( https://github.com/stdlib-js/stdlib/commit/2efc79009f71a65f5ac51bd7bb81539ae6d23796 ) - add ` complex/float64/ctor `
14+
15+ </section >
16+
17+ <!-- /.features -->
18+
19+ <section class =" bug-fixes " >
20+
21+ ### Bug Fixes
22+
23+ - [ ` 3c94d90 ` ] ( https://github.com/stdlib-js/stdlib/commit/3c94d900f801affd96eef9898a742e51e362f6bd ) - update dependency path
24+
25+ </section >
26+
27+ <!-- /.bug-fixes -->
28+
29+ <section class =" breaking-changes " >
30+
31+ ### BREAKING CHANGES
32+
33+ - [ ` 7381394 ` ] ( https://github.com/stdlib-js/stdlib/commit/738139479cf29cbe123d7c5028024983ba11b3bd ) : remove ` complex/reviver-float64 `
34+
35+ - To migrate, users should update their require/import paths to use
36+ ` @stdlib/complex-float64/reviver ` which provides the same API and
37+ implementation.
38+
39+ </section >
40+
41+ <!-- /.breaking-changes -->
42+
43+ <section class =" commits " >
44+
45+ ### Commits
46+
47+ <details >
48+
49+ - [ ` 7381394 ` ] ( https://github.com/stdlib-js/stdlib/commit/738139479cf29cbe123d7c5028024983ba11b3bd ) - ** remove:** remove ` complex/reviver-float64 ` _ (by Athan Reines)_
50+ - [ ` 75d4f83 ` ] ( https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f ) - ** refactor:** update require and include paths _ (by Athan Reines)_
51+ - [ ` 3c94d90 ` ] ( https://github.com/stdlib-js/stdlib/commit/3c94d900f801affd96eef9898a742e51e362f6bd ) - ** fix:** update dependency path _ (by Athan Reines)_
52+ - [ ` 2efc790 ` ] ( https://github.com/stdlib-js/stdlib/commit/2efc79009f71a65f5ac51bd7bb81539ae6d23796 ) - ** feat:** add ` complex/float64/ctor ` _ (by Athan Reines)_
53+
54+ </details >
55+
56+ </section >
57+
58+ <!-- /.commits -->
59+
60+ <section class =" contributors " >
61+
62+ ### Contributors
63+
64+ A total of 1 person contributed to this release. Thank you to this contributor:
65+
66+ - Athan Reines
67+
68+ </section >
69+
70+ <!-- /.contributors -->
71+
72+ </section >
73+
74+ <!-- /.release -->
75+
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ Pushpendra Chandravanshi <pushpendrachandravanshi4@gmail.com>
6363Raunak Kumar Gupta <raunakmodanwal321@gmail.com>
6464Rejoan Sardar <119718513+Rejoan-Sardar@users.noreply.github.com>
6565Ricky Reusser <rsreusser@gmail.com>
66+ Ridam Garg <67867319+RidamGarg@users.noreply.github.com>
6667Robert Gislason <gztown2216@yahoo.com>
6768Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
6869Rutam <138517416+performant23@users.noreply.github.com>
@@ -75,7 +76,7 @@ Shraddheya Shendre <shendreshraddheya@gmail.com>
7576Shubh Mehta <93862397+Shubh942@users.noreply.github.com>
7677Shubham Mishra <shubh622005@gmail.com>
7778Sivam Das <100067002+Sivam2313@users.noreply.github.com>
78- Snehil Shah <130062020+Snehil-Shah@users.noreply.github .com>
79+ Snehil Shah <snehilshah.989@gmail .com>
7980Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
8081Spandan Barve <contact@marsian.dev>
8182Stephannie Jiménez Gacha <steff456@hotmail.com>
Original file line number Diff line number Diff line change @@ -655,8 +655,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
655655[ npm-image ] : http://img.shields.io/npm/v/@stdlib/complex-float64-ctor.svg
656656[ npm-url ] : https://npmjs.org/package/@stdlib/complex-float64-ctor
657657
658- [ test-image ] : https://github.com/stdlib-js/complex-float64-ctor/actions/workflows/test.yml/badge.svg?branch=main
659- [ test-url ] : https://github.com/stdlib-js/complex-float64-ctor/actions/workflows/test.yml?query=branch:main
658+ [ test-image ] : https://github.com/stdlib-js/complex-float64-ctor/actions/workflows/test.yml/badge.svg?branch=v0.0.1
659+ [ test-url ] : https://github.com/stdlib-js/complex-float64-ctor/actions/workflows/test.yml?query=branch:v0.0.1
660660
661661[ coverage-image ] : https://img.shields.io/codecov/c/github/stdlib-js/complex-float64-ctor/main.svg
662662[ coverage-url ] : https://codecov.io/github/stdlib-js/complex-float64-ctor?branch=main
Original file line number Diff line number Diff line change 11{
22 "name" : " @stdlib/complex-float64-ctor" ,
3- "version" : " 0.0.0 " ,
3+ "version" : " 0.0.1 " ,
44 "description" : " 128-bit complex number." ,
55 "license" : " Apache-2.0" ,
66 "author" : {
You can’t perform that action at this time.
0 commit comments