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
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion blobby/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.4.0 (unreleased)
## 0.4.0 (2025-10-08)
### Changed
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1149])
- Replaced iterators with `const fn` parsing ([#1187])
Expand Down
2 changes: 1 addition & 1 deletion blobby/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blobby"
version = "0.4.0-pre.1"
version = "0.4.0"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
Expand Down
2 changes: 1 addition & 1 deletion blobby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ An encoding and decoding library for the Blobby (`blb`) file format, which serve
deduplicated storage format for a sequence of binary blobs.

## Examples
```
```rust
// We recommend to save blobby data into separate files and
// use the `include_bytes!` macro
static BLOBBY_DATA: &[u8; 27] = b"\x08\x02\x05hello\x06world!\x01\x02 \x00\x03\x06:::\x03\x01\x00";
Expand Down