Skip to content

Commit 20474b0

Browse files
Update release msrv and release notes
1 parent 3906fdb commit 20474b0

File tree

8 files changed

+25
-9
lines changed

8 files changed

+25
-9
lines changed

.github/workflows/crossterm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# pinned (MSRV) rust version :: ubuntu
1818
- build: msrv
1919
os: ubuntu-18.04
20-
rust: 1.56.1
20+
rust: 1.78.0
2121

2222
# latest rust stable :: ubuntu
2323
- build: stable

.github/workflows/default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# pinned (MSRV) rust version :: ubuntu
1818
- build: msrv
1919
os: ubuntu-18.04
20-
rust: 1.56.1
20+
rust: 1.78.0
2121

2222
# latest rust stable :: ubuntu
2323
- build: stable

.github/workflows/termion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# pinned (MSRV) rust version :: ubuntu
1818
- build: msrv
1919
os: ubuntu-18.04
20-
rust: 1.56.1
20+
rust: 1.78.0
2121

2222
# latest rust stable :: ubuntu
2323
- build: stable

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## `0.6.0`
4+
5+
The msrv has been bumped up to `1.78`
6+
7+
- `requestty`
8+
9+
- Update `MultiSelect` to show spaces instead of gray tick marks for
10+
unselected items (#24).
11+
12+
- `requestty-ui`
13+
14+
- Update crossterm and termion dependencies>
15+
16+
- Split `Backend` trait into `DisplayBackend` `Backend` to support
17+
different trait requirements for the `termion` backend.
18+
319
## `0.5.0`
420

521
- `requestty`

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "requestty"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Lutetium Vanadium"]
55
edition = "2018"
66
description = "An easy-to-use collection of interactive cli prompts"
@@ -21,8 +21,8 @@ members = [
2121
]
2222

2323
[dependencies]
24-
ui = { package = "requestty-ui", path = "./requestty-ui", version = "=0.5.0" }
25-
macro = { package = "requestty-macro", path = "./requestty-macro", optional = true, version = "=0.5.0" }
24+
ui = { package = "requestty-ui", path = "./requestty-ui", version = "=0.6.0" }
25+
macro = { package = "requestty-macro", path = "./requestty-macro", optional = true, version = "=0.6.0" }
2626

2727
tempfile = "3"
2828

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,4 +159,4 @@ There are 11 in-built prompts:
159159
## Minimum Supported Rust Version (MSRV)
160160

161161
Minimum supported rust version (as per
162-
[cargo-msrv](https://crates.io/crates/cargo-msrv)) is `1.56.1`
162+
[cargo-msrv](https://crates.io/crates/cargo-msrv)) is `1.78.0`

requestty-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "requestty-macro"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Lutetium Vanadium"]
55
edition = "2018"
66
description = "The `questions` macro for `requestty`"

requestty-ui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "requestty-ui"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Lutetium Vanadium"]
55
edition = "2018"
66
description = "A widget based terminal ui rendering library."

0 commit comments

Comments
 (0)