Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 54 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- <csr-id-f58dfa77507a33330158973f772bcec09574cb3f/> add README
- <csr-id-6fb66df4aa42537aaf7f415233e02dc6cfd647b8/> add gitignore

### Chore

- <csr-id-aa01da2a5371b2f1d04e2d24cd72dba86aa386f2/> bump version to v0.2.1
- <csr-id-a7fddb9134e77929fb5a8399c89a167cda2a5e99/> bump version to v0.2.0-pre

### New Features (BREAKING)

- <csr-id-c5e19c84183a42412fc862898283962561d908f5/> remove is_empty method and return non-zero length
Expand All @@ -40,16 +45,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- <csr-id-a5a5620f484361ddad58c0beb7dbe6639a6c487d/> add cloned method
- <csr-id-d9c5b1cefb8c2b78ff88b95825f74124b4332607/> add infalliable first-last accessor methods
- provide `first()`, `last()`, `split_first()`, `split_last()` methods.
- use unsafe blocks for performance, and throughly document the safety.
- add tests and miri workflow to ci.
- <csr-id-41c416c63bdeace91082bfeeb30380756f5aa288/> add support to obtain non empty byte slice from non empty borrowed array

### Commit Statistics

<csr-read-only-do-not-edit/>

- 3 commits contributed to the release over the course of 1 calendar day.
- 1 day passed between releases.
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
- 5 commits contributed to the release over the course of 6 calendar days.
- 6 days passed between releases.
- 3 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages

### Commit Details
Expand All @@ -59,13 +63,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<details><summary>view details</summary>

* **Uncategorized**
- Merge pull request #10 from hubcycle/9-remove-is_empty-and-return-non-zero-length (8a6bd1e)
- Remove is_empty method and return non-zero length (c5e19c8)
- Merge pull request #8 from hubcycle/release/v0.1.2 (4aada5a)
- Bump version to v0.2.1 (aa01da2)
- Merge pull request #13 from hubcycle/12-nebz-borrowed-array-as-slice (2230085)
- Bump version to v0.2.0-pre (a7fddb9)
- Add support to obtain non empty byte slice from non empty borrowed array (41c416c)
- Merge pull request #11 from hubcycle/release/v0.2.0 (223e5cc)
</details>

<csr-unknown>
use unsafe blocks for performance, and throughly document the safety.add tests and miri workflow to ci.<csr-unknown/>

## 0.1.2 (2025-07-18)

<csr-id-5c51d53a14360aa051003275f89859c7deca5e07/>

### Chore

- <csr-id-5c51d53a14360aa051003275f89859c7deca5e07/> add changelog for v0.1.2
Expand All @@ -74,8 +85,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- <csr-id-d9c5b1cefb8c2b78ff88b95825f74124b4332607/> add infalliable first-last accessor methods
- provide `first()`, `last()`, `split_first()`, `split_last()` methods.
- use unsafe blocks for performance, and throughly document the safety.
- add tests and miri workflow to ci.
- use unsafe blocks for performance, and throughly document the safety.
- add tests and miri workflow to ci.

### Commit Statistics

Expand Down Expand Up @@ -136,6 +147,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add cloned method (a5a5620)
</details>

## 0.2.0 (2025-07-19)

### Chore

- <csr-id-32fb3e7bd087641eb6bef672f9947f36a571c03a/> add changelog for v0.2.0

### New Features (BREAKING)

- <csr-id-c5e19c84183a42412fc862898283962561d908f5/> remove is_empty method and return non-zero length
- fix doc comments

### Commit Statistics

<csr-read-only-do-not-edit/>

- 4 commits contributed to the release over the course of 1 calendar day.
- 1 day passed between releases.
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

* **Uncategorized**
- Add changelog for v0.2.0 (32fb3e7)
- Merge pull request #10 from hubcycle/9-remove-is_empty-and-return-non-zero-length (8a6bd1e)
- Remove is_empty method and return non-zero length (c5e19c8)
- Merge pull request #8 from hubcycle/release/v0.1.2 (4aada5a)
</details>

## 0.1.0 (2025-07-18)

<csr-id-6923fd24ed8c89b262c326f57897eecd379c420c/>
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nebz"
version = "0.2.0-pre"
version = "0.2.1"
edition = "2024"
description = "an immutable non-empty bytes container"
readme = "README.md"
Expand Down