Skip to content

Commit

Permalink
Prepare next release
Browse files Browse the repository at this point in the history
  • Loading branch information
gwenn committed Feb 19, 2023
1 parent 36f2739 commit a63a249
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustyline"
version = "10.1.0"
version = "11.0.0"
authors = ["Katsu Kawakami <kkawa1570@gmail.com>"]
edition = "2021"
description = "Rustyline, a readline implementation based on Antirez's Linenoise"
Expand Down Expand Up @@ -40,7 +40,7 @@ memchr = "2.0"
radix_trie = { version = "0.2", optional = true }
regex = { version = "1.5.5", optional = true }
# For derive
rustyline-derive = { version = "0.7.0", optional = true, path = "rustyline-derive" }
rustyline-derive = { version = "0.8.0", optional = true, path = "rustyline-derive" }

[target.'cfg(unix)'.dependencies]
nix = { version = "0.26", default-features = false, features = ["fs", "ioctl", "poll", "signal", "term"] }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ to your `Cargo.toml`:

```toml
[dependencies]
rustyline = "10.1.0"
rustyline = "11.0.0"
```

## Features
Expand Down
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ History
each line input session.
- [x] append_history
- [ ] history_truncate_file
- [ ] custom persistent storage
- [X] custom persistent storage

Input

Expand Down
2 changes: 1 addition & 1 deletion rustyline-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustyline-derive"
version = "0.7.0"
version = "0.8.0"
authors = ["gwenn"]
edition = "2018"
description = "Rustyline macros implementation of #[derive(Completer, Helper, Hinter, Highlighter)]"
Expand Down

0 comments on commit a63a249

Please sign in to comment.