Skip to content

Commit

Permalink
Merge pull request #144 from artichoke/lopopolo/rev-deps-and-release-…
Browse files Browse the repository at this point in the history
…v0.3.0

Update dependencies and prepare for v0.3.0 release
  • Loading branch information
lopopolo authored Jan 2, 2023
2 parents eda3a70 + bacc1ce commit 39502f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cactusref"
version = "0.2.0" # remember to set `html_root_url` in `src/lib.rs`.
version = "0.3.0" # remember to set `html_root_url` in `src/lib.rs`.
authors = ["Ryan Lopopolo <rjl@hyperbo.la>"]
license = "MIT"
edition = "2021"
Expand All @@ -21,13 +21,13 @@ default = ["std"]
std = []

[dependencies]
hashbrown = { version = "0.12.0", default-features = false, features = ["inline-more"] }
hashbrown = { version = "0.13.1", default-features = false, features = ["inline-more"] }
log = "0.4.6"
rustc-hash = { version = "1.1.0", default-features = false }

[dev-dependencies]
# Enable debug and trace-level logging in tests.
env_logger = { version = "0.9.0", default-features = false }
env_logger = { version = "0.10.0", default-features = false }

# Check that crate versions are properly updated in documentation and code when
# bumping the version.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
cactusref = "0.2.0"
cactusref = "0.3.0"
```

CactusRef is mostly a drop-in replacement for `std::rc::Rc`, which can be used
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ harness = false
criterion = "0.4.0"
# benchmark target
cactusref = { path = ".." }
env_logger = { version = "0.9.0", default-features = false }
env_logger = { version = "0.10.0", default-features = false }
log = "0.4.6"
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
//! [`CoerceUnsized`]: core::ops::CoerceUnsized
//! [`DispatchFromDyn`]: core::ops::DispatchFromDyn
#![doc(html_root_url = "https://docs.rs/cactusref/0.2.0")]
#![doc(html_root_url = "https://docs.rs/cactusref/0.3.0")]
#![no_std]

// Ensure code blocks in README.md compile
Expand Down

0 comments on commit 39502f3

Please sign in to comment.