Skip to content

Commit

Permalink
Merge pull request #161 from artichoke/lopopolo/release-5.0.0
Browse files Browse the repository at this point in the history
Prepare for 5.0.0 release
  • Loading branch information
lopopolo authored Aug 8, 2022
2 parents 102b1ac + 43adf8a commit 6234606
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "boba"
version = "4.3.1" # remember to set `html_root_url` in `src/lib.rs`.
version = "5.0.0" # remember to set `html_root_url` in `src/lib.rs`.
authors = ["Ryan Lopopolo <rjl@hyperbo.la>"]
license = "MIT"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
boba = "4.3.1"
boba = "5.0.0"
```

Then encode and decode data like:
Expand Down
12 changes: 9 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,19 @@
//! this crate. Enabling the **std** feature also enables the **alloc**
//! feature.
//!
#![cfg_attr(
not(feature = "std"),
doc = "[`std`]: https://doc.rust-lang.org/stable/std/index.html"
)]
#![cfg_attr(
not(feature = "std"),
doc = "[`std::error::Error`]: https://doc.rust-lang.org/stable/std/error/trait.Error.html"
)]
//! [perl-bubblebabble]: https://metacpan.org/pod/Digest::BubbleBabble
//! [ruby-bubblebabble]: https://ruby-doc.org/stdlib-3.1.1/libdoc/digest/rdoc/Digest.html#method-c-bubblebabble
//! [`std`]: https://doc.rust-lang.org/stable/std/index.html
//! [`std::error::Error`]: https://doc.rust-lang.org/stable/std/error/trait.Error.html
#![no_std]
#![doc(html_root_url = "https://docs.rs/boba/4.3.1")]
#![doc(html_root_url = "https://docs.rs/boba/5.0.0")]

// Ensure code blocks in README.md compile
#[cfg(doctest)]
Expand Down

0 comments on commit 6234606

Please sign in to comment.