1.0.0-beta.2 master 1.0.0-beta.2
authorChris Morgan <me@chrismorgan.info>
committerChris Morgan <me@chrismorgan.info>
Cargo.toml
README.md

index aca1a6444a0a83ebc7e8d188a07c321db5d9c732..43e7decd5278f6a7bac336ee25056ab84164685b 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "anymap"
-version = "1.0.0-beta.1"
+version = "1.0.0-beta.2"
 authors = ["Chris Morgan <rust@chrismorgan.info>"]
 edition = "2018"
 rust-version = "1.36"
index d0af879b23b4f59750efd3d296587d8d20990135..e53b1e85ab06d81c60c0b2786cd76239ec99a466 100644 (file)
--- a/README.md
+++ b/README.md
@@ -45,14 +45,14 @@ Typical Cargo.toml usage, providing `anymap::AnyMap` *et al.* backed by `std::co
 
 ```toml
 [dependencies]
-anymap = "1.0.0-beta.1"
+anymap = "1.0.0-beta.2"
 ```
 
 No-std usage, providing `anymap::hashbrown::AnyMap` *et al.* (note the different path, required because Cargo features are additive) backed by `alloc` and the [hashbrown](https://rust-lang.github.io/hashbrown) crate:
 
 ```toml
 [dependencies]
-anymap = { version = "1.0.0-beta.1", default-features = false, features = ["hashbrown"] }
+anymap = { version = "1.0.0-beta.2", default-features = false, features = ["hashbrown"] }
 ```
 
 **On stability:** hashbrown is still pre-1.0.0 and experiencing breaking changes. Because it’s useful for a small fraction of users, I am retaining it, but with *different compatibility guarantees to the typical SemVer ones*. Where possible, I will just widen the range for new releases of hashbrown, but if an incompatible change occurs, I may drop support for older versions of hashbrown with a bump to the *minor* part of the anymap version number (e.g. 1.1.0, 1.2.0). Iff you’re using this feature, this is cause to *consider* using a tilde requirement like `"~1.0"` (or spell it out as `>=1, <1.1`).