Skip to content

Commit bc06b3e

Browse files
authored
Merge pull request #825 from gwenn/0.15.0
Prepare release
2 parents bdc2f60 + 43bb4a4 commit bc06b3e

File tree

3 files changed

+36
-13
lines changed

3 files changed

+36
-13
lines changed

Cargo.toml

+28-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustyline"
3-
version = "14.0.0"
3+
version = "15.0.0"
44
authors = ["Katsu Kawakami <kkawa1570@gmail.com>"]
55
edition = "2021"
66
description = "Rustyline, a readline implementation based on Antirez's Linenoise"
@@ -11,10 +11,7 @@ keywords = ["readline"]
1111
license = "MIT"
1212
categories = ["command-line-interface"]
1313

14-
exclude = [
15-
"/.github/*",
16-
"/rustfmt.toml",
17-
]
14+
exclude = ["/.github/*", "/rustfmt.toml"]
1815

1916
[badges]
2017
maintenance = { status = "actively-developed" }
@@ -29,7 +26,10 @@ cfg-if = "1.0"
2926
home = { version = "0.5.4", optional = true }
3027
# For History
3128
fd-lock = { version = "4.0.0", optional = true }
32-
rusqlite = { version = "0.32.0", optional = true, default-features = false, features = ["bundled", "backup"] }
29+
rusqlite = { version = "0.32.0", optional = true, default-features = false, features = [
30+
"bundled",
31+
"backup",
32+
] }
3333
libc = "0.2.155"
3434
log = "0.4.22"
3535
unicode-width = "0.2.0"
@@ -39,18 +39,30 @@ memchr = "2.7"
3939
radix_trie = { version = "0.2", optional = true }
4040
regex = { version = "1.10", optional = true }
4141
# For derive
42-
rustyline-derive = { version = "0.10.0", optional = true, path = "rustyline-derive" }
42+
rustyline-derive = { version = "0.11.0", optional = true, path = "rustyline-derive" }
4343

4444
[target.'cfg(unix)'.dependencies]
45-
nix = { version = "0.29", default-features = false, features = ["fs", "ioctl", "poll", "signal", "term"] }
45+
nix = { version = "0.29", default-features = false, features = [
46+
"fs",
47+
"ioctl",
48+
"poll",
49+
"signal",
50+
"term",
51+
] }
4652
utf8parse = "0.2"
4753
skim = { version = "0.10", optional = true, default-features = false }
4854
signal-hook = { version = "0.3", optional = true, default-features = false }
4955
termios = { version = "0.3.3", optional = true }
5056
buffer-redux = { version = "1.0", optional = true, default-features = false }
5157

5258
[target.'cfg(windows)'.dependencies]
53-
windows-sys = { version = "0.59.0", features = ["Win32_Foundation", "Win32_System_Console", "Win32_Security", "Win32_System_Threading", "Win32_UI_Input_KeyboardAndMouse"] }
59+
windows-sys = { version = "0.59.0", features = [
60+
"Win32_Foundation",
61+
"Win32_System_Console",
62+
"Win32_Security",
63+
"Win32_System_Threading",
64+
"Win32_UI_Input_KeyboardAndMouse",
65+
] }
5466
clipboard-win = "5.0"
5567

5668
[dev-dependencies]
@@ -96,7 +108,13 @@ name = "sqlite_history"
96108
required-features = ["with-sqlite-history"]
97109

98110
[package.metadata.docs.rs]
99-
features = ["custom-bindings", "derive", "with-dirs", "with-file-history", "with-fuzzy"]
111+
features = [
112+
"custom-bindings",
113+
"derive",
114+
"with-dirs",
115+
"with-file-history",
116+
"with-fuzzy",
117+
]
100118
all-features = false
101119
no-default-features = true
102120
default-target = "x86_64-unknown-linux-gnu"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ to your `Cargo.toml`:
6767

6868
```toml
6969
[dependencies]
70-
rustyline = "14.0.0"
70+
rustyline = "15.0.0"
7171
```
7272

7373
## Features

rustyline-derive/Cargo.toml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustyline-derive"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["gwenn"]
55
edition = "2018"
66
description = "Rustyline macros implementation of #[derive(Completer, Helper, Hinter, Highlighter)]"
@@ -19,6 +19,11 @@ maintenance = { status = "actively-developed" }
1919
proc-macro = true
2020

2121
[dependencies]
22-
syn = { version = "2.0.72", default-features = false, features = ["derive", "parsing", "printing", "proc-macro"] }
22+
syn = { version = "2.0.72", default-features = false, features = [
23+
"derive",
24+
"parsing",
25+
"printing",
26+
"proc-macro",
27+
] }
2328
quote = { version = "1.0.36", default-features = false }
2429
proc-macro2 = { version = "1.0.86", default-features = false }

0 commit comments

Comments
 (0)