Skip to content

Commit e8c0425

Browse files
update version
1 parent c3077b8 commit e8c0425

File tree

4 files changed

+10
-16
lines changed

4 files changed

+10
-16
lines changed

CHANGELOG.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
# Changelog
22

3+
## `0.6.3`
4+
5+
Fix 'double event' on windows crossterm read #27
6+
37
## `0.6.2`
8+
49
Update `syn` crate
510

611
## `0.6.1`
12+
713
Fix doc issues
814

915
## `0.6.0`
1016

1117
The msrv has been bumped up to `1.78`
1218

1319
- `requestty`
14-
1520
- Update `MultiSelect` to show spaces instead of gray tick marks for
1621
unselected items (#24).
1722

1823
- `requestty-ui`
19-
2024
- Update crossterm and termion dependencies>
2125

2226
- Split `Backend` trait into `DisplayBackend` `Backend` to support
@@ -25,15 +29,13 @@ The msrv has been bumped up to `1.78`
2529
## `0.5.0`
2630

2731
- `requestty`
28-
2932
- Update the way indices are shown in `RawSelect`
3033

3134
- Added `OrderSelect` (#16)
3235

3336
- [bug fix] Support multi-word editor commands (#14)
3437

3538
- `requestty-ui`
36-
3739
- [bug fix] Add support for rendering wide characters. (#18, #19 and
3840
#20)
3941

@@ -44,21 +46,18 @@ The msrv has been bumped up to `1.78`
4446
## `0.4.1`
4547

4648
- `requestty-ui`
47-
4849
- Remove `dbg!` in `Input`. Fixes #12
4950

5051
## `0.4.0`
5152

5253
The msrv has been bumped up to `1.56`
5354

5455
- `requestty`
55-
5656
- Allow programmatic customisation of `Question::editor`
5757

5858
- Update `smallvec` version.
5959

6060
- `requestty-ui`
61-
6261
- Allow customising the symbol set used during rendering.
6362

6463
- Return error on 0 sized terminal instead of panicking.
@@ -68,7 +67,6 @@ The msrv has been bumped up to `1.56`
6867
## `0.3.0`
6968

7069
- `requestty`
71-
7270
- Allow using the Right Arrow key to auto-complete default
7371

7472
- Implement #6 - Add support for handling abort with `Esc`
@@ -86,7 +84,6 @@ The msrv has been bumped up to `1.56`
8684
- Fix #7 - input returns empty string even if default was given
8785

8886
- `requestty-ui`
89-
9087
- Added `OnEsc` to configure behaviour on `Esc` for `Input`s
9188

9289
- Added the `skipped` parameter to `Prompt::write_finished_message`
@@ -107,7 +104,6 @@ The msrv has been bumped up to `1.56`
107104
## `0.2.1`
108105

109106
- `requestty`
110-
111107
- Implement #4 - defaults are now shown in a different way for the
112108
`input`, `int` and `float` prompts.
113109

@@ -130,7 +126,6 @@ The msrv has been bumped up to `1.56`
130126
## `0.1.3`
131127

132128
- `requestty`
133-
134129
- Fix #3
135130

136131
- `requestty-ui`
@@ -139,7 +134,6 @@ The msrv has been bumped up to `1.56`
139134
## `0.1.2`
140135

141136
- `requestty`
142-
143137
- Fix #2
144138

145139
- `requestty-ui`

Cargo.toml

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

2323
[dependencies]
24-
ui = { package = "requestty-ui", path = "./requestty-ui", version = "=0.6.2" }
24+
ui = { package = "requestty-ui", path = "./requestty-ui", version = "=0.6.3" }
2525
macro = { package = "requestty-macro", path = "./requestty-macro", optional = true, version = "=0.6.2" }
2626

2727
tempfile = "3"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Add this to your `Cargo.toml`
3232

3333
```toml
3434
[dependencies]
35-
requestty = "0.4.1"
35+
requestty = "0.6.3"
3636
```
3737

3838
To ask a question:

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.6.2"
3+
version = "0.6.3"
44
authors = ["Lutetium Vanadium"]
55
edition = "2018"
66
description = "A widget based terminal ui rendering library."

0 commit comments

Comments
 (0)