Skip to content

Commit

Permalink
chore: prepare 0.8.0
Browse files Browse the repository at this point in the history
- update CHANGELOG
- update dev dependencies
- bump version to 0.8.0
  • Loading branch information
polazarus committed Feb 10, 2025
1 parent 3aad707 commit 030e73b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,24 @@

Notable changes only.

## [Unreleased]
## [0.8.0] - 2025-02-10

### Added

- add `as_ptr` to strings.
- add `as_mut_ptr` and `as_mut_ptr_unchecked` to strings and bytes

### Changed

- improve feature testing in CI
- improve doc
- update some dev dependencies

### Fixed

- remove accidentally mandatory dependency to `serde`
- fix `bstr` feature in `no_std`
- fix some clippy lints

## [0.7.0] - 2025-01-10

Expand Down Expand Up @@ -163,7 +172,9 @@ Most of those addition are breaking because they shadows `str`'s methods.

Initial release

[unreleased]: https://github.com/polazarus/hipstr/compare/0.7.0...HEAD
<!-- [unreleased]: https://github.com/polazarus/hipstr/compare/0.8.0...HEAD -->

[0.8.0]: https://github.com/polazarus/hipstr/compare/0.7.0...0.8.0
[0.7.0]: https://github.com/polazarus/hipstr/compare/0.6.0...0.7.0
[0.6.0]: https://github.com/polazarus/hipstr/compare/0.5.1...0.6.0
[0.5.1]: https://github.com/polazarus/hipstr/compare/0.5.0...0.5.1
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hipstr"
version = "0.7.0"
version = "0.8.0"
authors = ["Polazarus <[email protected]>"]
description = """Yet another string for Rust: zero-cost borrow and slicing,
inline representation for small strings, (atomic) reference counting"""
Expand All @@ -24,11 +24,11 @@ bstr = ["dep:bstr"]
borsh = ["dep:borsh"]

[dev-dependencies]
fastrand = "2.0.0"
serde_test = "1.0.176"
fastrand = "2.3.0"
serde_test = "1.0.177"
serde = { version = "1.0.100", default-features = false, features = ["derive", "alloc"] }
serde_json = { version = "1.0.45", default-features = false, features = ["alloc"] }
divan = "0.1.15"
divan = "0.1.17"

[dependencies.bstr]
version = "1.3"
Expand Down

0 comments on commit 030e73b

Please sign in to comment.