summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCyril Plisko <cyril.plisko@mountall.com>2017-09-06 09:43:03 +0300
committerCyril Plisko <cyril.plisko@mountall.com>2017-09-06 10:01:59 +0300
commit6056032975232ae5af9f3995fe481582d7c4ecb7 (patch)
tree09e1cd78f89e929d9673398674b4c3a8d058d812
parent7b193c6ccc0ac0de6b63ff81e938bb7a711e5978 (diff)
Bump version to 0.13.0
And also add html_root_url
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs1
2 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2d942e6..c27bd09 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,7 +7,7 @@ license = "Apache-2.0/MIT"
name = "pager"
readme = "README.md"
repository = "https://gitlab.com/imp/pager-rs.git"
-version = "0.12.1"
+version = "0.13.0" # remember to update html_root_url
categories = ["command-line-interface", "text-processing"]
[badges]
diff --git a/src/lib.rs b/src/lib.rs
index 575e206..87f0a71 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -65,6 +65,7 @@
//! will skip initialization. The host application will continue as normal. `Pager::is_on()` will
//! reflect the fact that no Pager is active.
+#![doc(html_root_url = "https://docs.rs/pager/0.13.0")]
#![cfg_attr(all(feature = "cargo-clippy", feature = "pedantic"), warn(clippy_pedantic))]
extern crate errno;