Skip to content

Commit

Permalink
Merge pull request #66 from vorner/next
Browse files Browse the repository at this point in the history
Release 1.5.0
  • Loading branch information
vorner committed Nov 15, 2021
2 parents 8d6b1fb + e411d78 commit 7e16ca3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
# 1.5.0

* Support serde (by a feature).

# 1.4.0

* Allow const-initializing ArcSwapOption (`const_empty` method).
Expand Down
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.

4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "arc-swap"
version = "1.4.0"
version = "1.5.0"
authors = ["Michal 'vorner' Vaner <vorner@vorner.cz>"]
description = "Atomically swappable Arc"
documentation = "https://docs.rs/arc-swap"
Expand All @@ -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"
Expand Down

1 comment on commit 7e16ca3

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Track benchmarks

Benchmark suite Current: 7e16ca3 Previous: e411d78 Ratio
uncontended/load 20 ns/iter (± 1) 22 ns/iter (± 0) 0.91
uncontended/load_full 36 ns/iter (± 1) 40 ns/iter (± 1) 0.90
uncontended/load_many 53 ns/iter (± 3) 54 ns/iter (± 1) 0.98
uncontended/store 149 ns/iter (± 7) 153 ns/iter (± 6) 0.97
uncontended/cache 0 ns/iter (± 0) 0 ns/iter (± 0) NaN
concurrent_loads/load 31 ns/iter (± 10) 30 ns/iter (± 17) 1.03
concurrent_loads/load_full 62 ns/iter (± 22) 62 ns/iter (± 24) 1
concurrent_loads/load_many 58 ns/iter (± 29) 82 ns/iter (± 27) 0.71
concurrent_loads/store 1290 ns/iter (± 582) 1238 ns/iter (± 546) 1.04
concurrent_loads/cache 0 ns/iter (± 0) 1 ns/iter (± 0) 0
concurrent_store/load 83 ns/iter (± 6) 83 ns/iter (± 6) 1
concurrent_store/load_full 111 ns/iter (± 12) 123 ns/iter (± 11) 0.90
concurrent_store/load_many 148 ns/iter (± 10) 162 ns/iter (± 14) 0.91
concurrent_store/store 1107 ns/iter (± 80) 1183 ns/iter (± 109) 0.94
concurrent_store/cache 1 ns/iter (± 0) 1 ns/iter (± 0) 1

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.