summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgwenn <45554+gwenn@users.noreply.github.com>2023-06-24 21:22:57 +0200
committerGitHub <noreply@github.com>2023-06-24 21:22:57 +0200
commit23cb8a16135dd885a356cc243d3a8cd0da0ef0e6 (patch)
treeec39034119994f5f5c93363cc7caf17bad72b4f0
parent3df2ec7fe3ee71f8ed5336f2ea92a9a298502c05 (diff)
parent5e262d337abfbfca410ffc6c743da65fecf7ef1c (diff)
downloadrustyline-23cb8a16135dd885a356cc243d3a8cd0da0ef0e6.zip
Merge pull request #709 from gwenn/release
Prepare next release
-rw-r--r--Cargo.toml4
-rw-r--r--README.md2
-rw-r--r--rustyline-derive/Cargo.toml2
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index fcbda98..313db8e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustyline"
-version = "11.0.0"
+version = "12.0.0"
authors = ["Katsu Kawakami <kkawa1570@gmail.com>"]
edition = "2021"
description = "Rustyline, a readline implementation based on Antirez's Linenoise"
@@ -39,7 +39,7 @@ memchr = "2.0"
radix_trie = { version = "0.2", optional = true }
regex = { version = "1.5.5", optional = true }
# For derive
-rustyline-derive = { version = "0.8.0", optional = true, path = "rustyline-derive" }
+rustyline-derive = { version = "0.9.0", optional = true, path = "rustyline-derive" }
[target.'cfg(unix)'.dependencies]
nix = { version = "0.26", default-features = false, features = ["fs", "ioctl", "poll", "signal", "term"] }
diff --git a/README.md b/README.md
index f6cff9b..4dd5433 100644
--- a/README.md
+++ b/README.md
@@ -67,7 +67,7 @@ to your `Cargo.toml`:
```toml
[dependencies]
-rustyline = "11.0.0"
+rustyline = "12.0.0"
```
## Features
diff --git a/rustyline-derive/Cargo.toml b/rustyline-derive/Cargo.toml
index 62ee201..c793fdc 100644
--- a/rustyline-derive/Cargo.toml
+++ b/rustyline-derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustyline-derive"
-version = "0.8.0"
+version = "0.9.0"
authors = ["gwenn"]
edition = "2018"
description = "Rustyline macros implementation of #[derive(Completer, Helper, Hinter, Highlighter)]"