summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCyril Plisko <cyril.plisko@mountall.com>2020-11-08 15:04:15 +0200
committerCyril Plisko <cyril.plisko@mountall.com>2020-11-08 15:04:15 +0200
commit67c93326f531523b081bde9035f18027a660a0b2 (patch)
tree80cd73373029c7f6ef2aa258a49c76f6be1154f8
parentfb5b45736c89296b50ef305a550d16fd7c022c87 (diff)
Bump version to 0.16.0HEADmaster
-rw-r--r--Cargo.toml4
-rw-r--r--src/lib.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index cfdf007..be50319 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,13 +1,13 @@
[package]
+name = "pager"
+version = "0.16.0" # remember to update html_root_url
authors = ["Cyril Plisko <cyril.plisko@mountall.com>"]
description = "Helps pipe your output through an external pager"
documentation = "https://docs.rs/pager"
keywords = ["pager", "less", "more"]
license = "Apache-2.0/MIT"
-name = "pager"
readme = "README.md"
repository = "https://gitlab.com/imp/pager-rs.git"
-version = "0.15.0" # remember to update html_root_url
edition = "2018"
categories = ["command-line-interface", "text-processing"]
diff --git a/src/lib.rs b/src/lib.rs
index 5ee9364..829f1c3 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -76,7 +76,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.15.0")]
+#![doc(html_root_url = "https://docs.rs/pager/0.16.0")]
#![cfg_attr(feature = "pedantic", warn(clippy::pedantic))]
#![warn(clippy::use_self)]
#![warn(deprecated_in_future)]