Skip to content

Commit 906a302

Browse files
authored
chore: release v0.1.0 (#7)
1 parent f6d9299 commit 906a302

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
release_tag: ${{ steps.configure.outputs.tag }}
125125
release_body: ${{ github.event.pull_request.body }}
126126
run: |
127-
if gh release view --json="" "$release_tag" &>/dev/null; then
127+
if gh release view "$release_tag" &>/dev/null; then
128128
echo "update existed release $release_tag"
129129
command=edit
130130
else

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ noticeable to end-users since the last release. For developers, this project fol
3232

3333
## [Unreleased]
3434

35+
## [0.1.0] - 2025-07-06
36+
37+
The main purpose of this release is to address unsoundness and introduce breaking changes early to
38+
prevent further issues. Consequently, it includes few changes.
39+
3540
### Added
3641

3742
- Implement `Emplace` for `&mut MaybeUninit<[u8; N]>` ([#2]).
@@ -46,8 +51,6 @@ noticeable to end-users since the last release. For developers, this project fol
4651
- (**BREAKING**) Remove `Emplace` implementations for `&mut [u8; N]`, `&mut [u8]` and `&mut Vec<u8>`
4752
([#2]).
4853

49-
- Add `#[must_use]` for `Slot`, `from_fn!()` and `from_closure()` ([#4]).
50-
5154
### Fixed
5255

5356
- Make the compilation passes when `default-features = false` ([#5]).
@@ -62,5 +65,6 @@ noticeable to end-users since the last release. For developers, this project fol
6265
🎉 Initial release. Check out [README](https://github.com/loichyan/dynify/blob/v0.0.1/README.md) for
6366
more details.
6467

65-
[Unreleased]: https://github.com/loichyan/dynify/compare/v0.0.1..HEAD
68+
[Unreleased]: https://github.com/loichyan/dynify/compare/v0.1.0..HEAD
69+
[0.1.0]: https://github.com/loichyan/dynify/releases/tag/v0.1.0
6670
[0.0.1]: https://github.com/loichyan/dynify/releases/tag/v0.0.1

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dynify"
3-
version = "0.0.1"
3+
version = "0.1.0"
44
authors = ["Loi Chyan <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"

0 commit comments

Comments
 (0)