Skip to content

Commit c210dd6

Browse files
authored
Release blobby v0.4.0 (#1238)
### Changed - Edition changed to 2024 and MSRV bumped to 1.85 ([#1149]) - Replaced iterators with `const fn` parsing ([#1187]) - Format of the file. File header now contains total number of stored blobs. ([#1207]) [#1149]: #1149 [#1187]: #1187 [#1207]: #1207
1 parent 9118661 commit c210dd6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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.

blobby/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## 0.4.0 (unreleased)
7+
## 0.4.0 (2025-10-08)
88
### Changed
99
- Edition changed to 2024 and MSRV bumped to 1.85 ([#1149])
1010
- Replaced iterators with `const fn` parsing ([#1187])

blobby/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "blobby"
3-
version = "0.4.0-pre.1"
3+
version = "0.4.0"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"

blobby/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ An encoding and decoding library for the Blobby (`blb`) file format, which serve
1111
deduplicated storage format for a sequence of binary blobs.
1212

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

0 commit comments

Comments
 (0)