diff --git a/CHANGELOG.md b/CHANGELOG.md index 336f496..5aaeccd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.5.0 + +* Support serde (by a feature). + # 1.4.0 * Allow const-initializing ArcSwapOption (`const_empty` method). diff --git a/Cargo.lock b/Cargo.lock index 7a7f63e..c485a2e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "0ccb55436ce9ad9dbd99e726649f8ae4ae3644f5011b822ed805358da37e7e00" [[package]] name = "arc-swap" -version = "1.4.0" +version = "1.5.0" dependencies = [ "adaptive-barrier", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 590fcab..09ad7d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arc-swap" -version = "1.4.0" +version = "1.5.0" authors = ["Michal 'vorner' Vaner "] description = "Atomically swappable Arc" documentation = "https://docs.rs/arc-swap" @@ -25,7 +25,7 @@ internal-test-strategies = [] experimental-strategies = [] [dependencies] -serde = { version = "1.0.130", features = ["rc"], optional = true } +serde = { version = "1", features = ["rc"], optional = true } [dev-dependencies] adaptive-barrier = "~0.1"