Skip to content

Commit 96ab3b1

Browse files
committed
new release
1 parent 270adf4 commit 96ab3b1

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## [0.3.3] - 2025-10-08
7+
8+
### New Codecs
9+
10+
- Added the codecs `BitcodeCodec` and `BitcodeSerdeCodec` (thanks to @arpadav).
11+
612
## [0.3.2] - 2025-06-24
713

814
### Fix

Cargo.toml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
[package]
22
name = "codee"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
edition = "2021"
5-
authors = ["Marc-Stefan Cassola"]
65
categories = ["encoding"]
76
description = "Easy and flexible way of encoding and decoding data into either strings or bytes"
87
exclude = ["examples/", "tests/"]
@@ -11,6 +10,9 @@ license = "MIT OR Apache-2.0"
1110
readme = "README.md"
1211
repository = "https://github.com/Synphonyte/codee"
1312

13+
[package.metadata.docs.rs]
14+
all-features = true
15+
1416
[dependencies]
1517
base64 = { version = "0.22", optional = true }
1618
bitcode = { version = "0.6.6", optional = true }
@@ -43,17 +45,14 @@ bitcode = ["dep:bitcode"]
4345
bitcode_serde = ["dep:bitcode", "bitcode/serde", "dep:serde"]
4446
serde_lite = ["dep:serde-lite"]
4547
json_serde_wasm = [
46-
"dep:serde",
47-
"dep:serde_json",
48-
"dep:js-sys",
49-
"dep:serde-wasm-bindgen",
50-
"dep:wasm-bindgen",
48+
"dep:serde",
49+
"dep:serde_json",
50+
"dep:js-sys",
51+
"dep:serde-wasm-bindgen",
52+
"dep:wasm-bindgen",
5153
]
5254

5355

5456
[dev-dependencies]
5557
serde = { version = "1", features = ["derive"] }
5658
serde-lite = { version = "0.5", features = ["derive"] }
57-
58-
[package.metadata.docs.rs]
59-
all-features = true

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
//! occur. If we don't offer versioning, then all settings could revert to the default every time we
7474
//! encounter an old format.
7575
//!
76-
//! How best to handle versioning depends on the codec involved:
76+
//! How to handle versioning best depends on the codec involved:
7777
//!
7878
//! - The `FromToStringCodec` can avoid versioning entirely by keeping
7979
//! to primitive types. In our example above, we could have decomposed the settings struct into

0 commit comments

Comments
 (0)