Skip to content

Commit

Permalink
Version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vorner committed Jan 3, 2021
1 parent c6f8da3 commit de104f8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.2.0

* Miri and 32 bit tests in CI.
* Making the writers lock-free. Soft-removing the IndependentStrategy, as it is
no longer needed (hidden and the same as the DafultStrategy).

# 1.1.0

* Fix soundness bug around access::Map. Technically a breaking change, but
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arc-swap"
version = "1.1.0"
version = "1.2.0"
authors = ["Michal 'vorner' Vaner <[email protected]>"]
description = "Atomically swappable Arc"
documentation = "https://docs.rs/arc-swap"
Expand Down

1 comment on commit de104f8

@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: de104f8 Previous: 56abc5d Ratio
uncontended/load 21 ns/iter (± 0) 25 ns/iter (± 0) 0.84
uncontended/load_full 36 ns/iter (± 0) 40 ns/iter (± 0) 0.90
uncontended/load_many 55 ns/iter (± 0) 52 ns/iter (± 1) 1.06
uncontended/store 179 ns/iter (± 0) 149 ns/iter (± 3) 1.20
uncontended/cache 0 ns/iter (± 0) 0 ns/iter (± 0) NaN
concurrent_loads/load 31 ns/iter (± 9) 30 ns/iter (± 24) 1.03
concurrent_loads/load_full 59 ns/iter (± 17) 58 ns/iter (± 26) 1.02
concurrent_loads/load_many 73 ns/iter (± 34) 72 ns/iter (± 37) 1.01
concurrent_loads/store 1668 ns/iter (± 553) 1708 ns/iter (± 618) 0.98
concurrent_loads/cache 0 ns/iter (± 0) 1 ns/iter (± 0) 0
concurrent_store/load 124 ns/iter (± 7) 126 ns/iter (± 24) 0.98
concurrent_store/load_full 148 ns/iter (± 22) 192 ns/iter (± 15) 0.77
concurrent_store/load_many 213 ns/iter (± 4) 223 ns/iter (± 14) 0.96
concurrent_store/store 1491 ns/iter (± 96) 1481 ns/iter (± 29) 1.01
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.