Skip to content

Commit

Permalink
Release 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vorner committed Mar 23, 2024
1 parent 2b11a84 commit ec5291f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 1.7.1

* Fix docs build (mutually exclusive features, #112).

# 1.7.0

* Support for no-std builds with the `experimental-thread-local`. Needs nightly
compiler. No stability guarantees with this feature (#93).

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.7.0"
version = "1.7.1"
authors = ["Michal 'vorner' Vaner <[email protected]>"]
description = "Atomically swappable Arc"
documentation = "https://docs.rs/arc-swap"
Expand Down

1 comment on commit ec5291f

@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: ec5291f Previous: 2b11a84 Ratio
uncontended/load 5 ns/iter (± 0) 5 ns/iter (± 0) 1
uncontended/load_full 9 ns/iter (± 0) 9 ns/iter (± 0) 1
uncontended/load_many 14 ns/iter (± 0) 14 ns/iter (± 0) 1
uncontended/store 53 ns/iter (± 0) 53 ns/iter (± 0) 1
uncontended/cache 0 ns/iter (± 0) 0 ns/iter (± 0) 1
concurrent_loads/load 11 ns/iter (± 0) 11 ns/iter (± 0) 1
concurrent_loads/load_full 11 ns/iter (± 0) 9 ns/iter (± 0) 1.22
concurrent_loads/load_many 22 ns/iter (± 0) 22 ns/iter (± 0) 1
concurrent_loads/store 490 ns/iter (± 2) 522 ns/iter (± 8) 0.94
concurrent_loads/cache 0 ns/iter (± 0) 0 ns/iter (± 0) 1
concurrent_store/load 54 ns/iter (± 1) 48 ns/iter (± 1) 1.13
concurrent_store/load_full 71 ns/iter (± 1) 66 ns/iter (± 1) 1.08
concurrent_store/load_many 83 ns/iter (± 0) 85 ns/iter (± 0) 0.98
concurrent_store/store 633 ns/iter (± 14) 532 ns/iter (± 5) 1.19
concurrent_store/cache 1 ns/iter (± 0) 1 ns/iter (± 0) 1
utilities/access-map 6 ns/iter (± 0) 6 ns/iter (± 0) 1

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

Please sign in to comment.