From f785e07f8e473f4986f1c08fb61a7fb240bec995 Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Sun, 20 Dec 2020 09:10:50 -0800 Subject: [PATCH] Prepare for v4.1.1 release --- Cargo.toml | 7 ++++++- src/lib.rs | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 25bc4c68..07ccd23e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boba" -version = "4.1.0" # remember to set `html_root_url` in `src/lib.rs`. +version = "4.1.1" # remember to set `html_root_url` in `src/lib.rs`. authors = ["Ryan Lopopolo "] license = "MIT" edition = "2018" @@ -34,3 +34,8 @@ bstr = { version = "0.2", default-features = false } [dev-dependencies] bubblebabble = "0.1" version-sync = "0.9" + +[package.metadata.docs.rs] +# This sets the default target to `x86_64-unknown-linux-gnu` and only builds +# that target. `boba` has the same API and code on all targets. +targets = ["x86_64-unknown-linux-gnu"] diff --git a/src/lib.rs b/src/lib.rs index af704ec2..f65fb464 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -71,7 +71,7 @@ //! [`std`]: https://doc.rust-lang.org/stable/std/index.html //! [`std::error::Error`]: https://doc.rust-lang.org/stable/std/error/trait.Error.html -#![doc(html_root_url = "https://docs.rs/boba/4.1.0")] +#![doc(html_root_url = "https://docs.rs/boba/4.1.1")] // Without the `std` feature, build `boba` with `no_std`. #![cfg_attr(not(feature = "std"), no_std)]