8000 Release v0.0.1 · stdlib-js/complex-float64-parse@cb8ff06 · GitHub
[go: up one dir, main page]

Skip to content

Commit cb8ff06

Browse files
committed
Release v0.0.1
1 parent 644e871 commit cb8ff06

File tree

4 files changed

+41
-4
lines changed

4 files changed

+41
-4
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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}"

CHANGELOG.md

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

33
> Package changelog.
44
5-
See [GitHub Releases](https://github.com/stdlib-js/complex-float64-parse/releases) for the changelog.
5+
<section class="release" id="v0.0.1">
6+
7+
## 0.0.1 (2024-06-04)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`3327e78`](https://github.com/stdlib-js/stdlib/commit/3327e7838636a10cc2f69a0d5a442bfe77f1e3a6) - **build:** guard against case of no releases _(by Philipp Burckhardt)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Philipp Burckhardt
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
193193
[npm-image]: http://img.shields.io/npm/v/@stdlib/complex-float64-parse.svg
194194
[npm-url]: https://npmjs.org/package/@stdlib/complex-float64-parse
195195

196-
[test-image]: https://github.com/stdlib-js/complex-float64-parse/actions/workflows/test.yml/badge.svg?branch=main
197-
[test-url]: https://github.com/stdlib-js/complex-float64-parse/actions/workflows/test.yml?query=branch:main
196+
[test-image]: https://github.com/stdlib-js/complex-float64-parse/actions/workflows/test.yml/badge.svg?branch=v0.0.1
197+
[test-url]: https://github.com/stdlib-js/complex-float64-parse/actions/workflows/test.yml?query=branch:v0.0.1
198198

199199
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/complex-float64-parse/main.svg
200200
[coverage-url]: https://codecov.io/github/stdlib-js/complex-float64-parse?branch=main

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stdlib/complex-float64-parse",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"description": "Parse a string representation of a 128-bit complex number.",
55
"license": "Apache-2.0",
66
"author": {

0 commit comments

Comments
 (0)
0