Skip to content

Commit

Permalink
Release v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jun 4, 2024
1 parent 01d77f3 commit 725a18e
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ jobs:
# Replace branch in README.md link definitions for badges with the new version:
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/branch([=:])[^ ]+/branch\1v${NEW_VERSION}/g"
# Rewrite CHANGELOG.md to replace "Unreleased" with the new version:
sed -Ei "s/Unreleased/${NEW_VERSION}/g" CHANGELOG.md
sed -Ei "s/unreleased/v${NEW_VERSION}/g" CHANGELOG.md
# Create a new commit and tag:
git add package.json README.md
git commit -m "Release v${NEW_VERSION}"
Expand Down
35 changes: 34 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,37 @@

> Package changelog.
See [GitHub Releases](https://github.com/stdlib-js/complex-float32-reviver/releases) for the changelog.
<section class="release" id="v0.0.1">

## 0.0.1 (2024-06-04)

<section class="commits">

### Commits

<details>

- [`3327e78`](https://github.com/stdlib-js/stdlib/commit/3327e7838636a10cc2f69a0d5a442bfe77f1e3a6) - **build:** guard against case of no releases _(by Philipp Burckhardt)_

</details>

</section>

<!-- /.commits -->

<section class="contributors">

### Contributors

A total of 1 person contributed to this release. Thank you to this contributor:

- Philipp Burckhardt

</section>

<!-- /.contributors -->

</section>

<!-- /.release -->

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/complex-float32-reviver.svg
[npm-url]: https://npmjs.org/package/@stdlib/complex-float32-reviver

[test-image]: https://github.com/stdlib-js/complex-float32-reviver/actions/workflows/test.yml/badge.svg?branch=main
[test-url]: https://github.com/stdlib-js/complex-float32-reviver/actions/workflows/test.yml?query=branch:main
[test-image]: https://github.com/stdlib-js/complex-float32-reviver/actions/workflows/test.yml/badge.svg?branch=v0.0.1
[test-url]: https://github.com/stdlib-js/complex-float32-reviver/actions/workflows/test.yml?query=branch:v0.0.1

[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/complex-float32-reviver/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/complex-float32-reviver?branch=main
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stdlib/complex-float32-reviver",
"version": "0.0.0",
"version": "0.0.1",
"description": "Revive a JSON-serialized 64-bit complex number.",
"license": "Apache-2.0",
"author": {
Expand Down

0 comments on commit 725a18e

Please sign in to comment.