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 19, 2024
1 parent 448933a commit 845587e
Show file tree
Hide file tree
Showing 6 changed files with 98 additions and 13 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
72 changes: 71 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,74 @@

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

## 0.0.1 (2024-06-19)

<section class="features">

### Features

- [`2efc790`](https://github.com/stdlib-js/stdlib/commit/2efc79009f71a65f5ac51bd7bb81539ae6d23796) - add `complex/float64/ctor`

</section>

<!-- /.features -->

<section class="bug-fixes">

### Bug Fixes

- [`3c94d90`](https://github.com/stdlib-js/stdlib/commit/3c94d900f801affd96eef9898a742e51e362f6bd) - update dependency path

</section>

<!-- /.bug-fixes -->

<section class="breaking-changes">

### BREAKING CHANGES

- [`7381394`](https://github.com/stdlib-js/stdlib/commit/738139479cf29cbe123d7c5028024983ba11b3bd): remove `complex/reviver-float64`

- To migrate, users should update their require/import paths to use
`@stdlib/complex-float64/reviver` which provides the same API and
implementation.

</section>

<!-- /.breaking-changes -->

<section class="commits">

### Commits

<details>

- [`7381394`](https://github.com/stdlib-js/stdlib/commit/738139479cf29cbe123d7c5028024983ba11b3bd) - **remove:** remove `complex/reviver-float64` _(by Athan Reines)_
- [`75d4f83`](https://github.com/stdlib-js/stdlib/commit/75d4f83cb85610d23a04dc21a03f8075f6d3665f) - **refactor:** update require and include paths _(by Athan Reines)_
- [`3c94d90`](https://github.com/stdlib-js/stdlib/commit/3c94d900f801affd96eef9898a742e51e362f6bd) - **fix:** update dependency path _(by Athan Reines)_
- [`2efc790`](https://github.com/stdlib-js/stdlib/commit/2efc79009f71a65f5ac51bd7bb81539ae6d23796) - **feat:** add `complex/float64/ctor` _(by Athan Reines)_

</details>

</section>

<!-- /.commits -->

<section class="contributors">

### Contributors

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

- Athan Reines

</section>

<!-- /.contributors -->

</section>

<!-- /.release -->

3 changes: 2 additions & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Pushpendra Chandravanshi <[email protected]>
Raunak Kumar Gupta <[email protected]>
Rejoan Sardar <[email protected]>
Ricky Reusser <[email protected]>
Ridam Garg <[email protected]>
Robert Gislason <[email protected]>
Roman Stetsyk <[email protected]>
Rutam <[email protected]>
Expand All @@ -75,7 +76,7 @@ Shraddheya Shendre <[email protected]>
Shubh Mehta <[email protected]>
Shubham Mishra <[email protected]>
Sivam Das <[email protected]>
Snehil Shah <[email protected].com>
Snehil Shah <snehilshah.989@gmail.com>
Soumajit Chatterjee <[email protected]>
Spandan Barve <[email protected]>
Stephannie Jiménez Gacha <[email protected]>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -655,8 +655,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/complex-float64-ctor.svg
[npm-url]: https://npmjs.org/package/@stdlib/complex-float64-ctor

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

[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/complex-float64-ctor/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/complex-float64-ctor?branch=main
Expand Down
26 changes: 18 additions & 8 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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-float64-ctor",
"version": "0.0.0",
"version": "0.0.1",
"description": "128-bit complex number.",
"license": "Apache-2.0",
"author": {
Expand Down

0 comments on commit 845587e

Please sign in to comment.