Skip to content

Commit 3a78b56

Browse files
committed
Bumped revision
1 parent 1f122e8 commit 3a78b56

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## [0.8.0] - 2025-02-22
3+
## [0.8.0] - 2025-03-03
44

55
### New
66

@@ -17,6 +17,10 @@
1717
types. If you serialized a structure using such a tuple, it will be no longer
1818
deserializable.
1919

20+
* You can now serialize exact-size iterators that will be deserialized as
21+
vectors, making it possible to save incrementally structures larger
22+
than the available memory.
23+
2024
## [0.7.0] - 2025-02-18
2125

2226
### New

epserde-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = [
55
"Sebastiano Vigna <[email protected]>",
66
]
77
description = "Procedural macros for ε-serde"
8-
version = "0.7.0"
8+
version = "0.8.0"
99
edition = "2021"
1010
repository = "https://github.com/vigna/epserde-rs/"
1111
license = "Apache-2.0 OR LGPL-2.1-or-later"

epserde/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = [
55
"Sebastiano Vigna <[email protected]>",
66
]
77
description = "ε-serde is an ε-copy (i.e., almost zero-copy) serialization/deserialization framework"
8-
version = "0.7.1"
8+
version = "0.8.0"
99
edition = "2021"
1010
repository = "https://github.com/vigna/epserde-rs/"
1111
license = "Apache-2.0 OR LGPL-2.1-or-later"
@@ -18,8 +18,7 @@ bitflags = { version = "2.4.2", default-features = false }
1818
xxhash-rust = { version = "0.8.8", default-features = false, features = [
1919
"xxh3",
2020
] }
21-
#epserde-derive = { version = "=0.7.0", optional = true }
22-
epserde-derive = { path = "../epserde-derive", optional = true }
21+
epserde-derive = { version = "=0.8.0", optional = true }
2322
anyhow = "1.0.79"
2423
thiserror = "2.0.11"
2524
sealed = "0.6.0"

0 commit comments

Comments
 (0)