Skip to content

Commit e0e90be

Browse files
authored
chore: release 0.8.0 changes (#66)
1 parent 335a2d5 commit e0e90be

4 files changed

Lines changed: 28 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,27 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.0]
9+
10+
### Changed
11+
12+
- Upgrade `tokio` to `1.50.0`
13+
- Upgrade `anyhow` to `1.0.102`
14+
- Revise CI workflows and release pipeline
15+
- Synchronize terminal focus state with mouse clicks inside and outside the widget and gate input handling on the current focus state
16+
17+
### Added
18+
19+
- Expose backend `Command` as `iced_term::BackendCommand` together with required public types for external usage (thanks [@clicman](https://github.com/clicman))
20+
- Allow scrolling a terminal on hover (thanks [@SarthakSingh31](https://github.com/SarthakSingh31))
21+
- Add support for macOS backspace emulation (thanks [@SarthakSingh31](https://github.com/SarthakSingh31))
22+
- Add a `focus` example that demonstrates `TerminalView` working alongside the iced text editor
23+
824
## [0.7.0]
925

1026
### Changed
1127

12-
- (**breaking changes**) Now the Terminal's method `subscription` return `Subscription<Event>` instead of `impl Stream<Item = Event>`
28+
- (**breaking changes**) Now the Terminal's method `subscription` returns `Subscription<Event>` instead of `impl Stream<Item = Event>`
1329
- Upgrade `iced` to `0.14.0`
1430
- Upgrade `iced_graphics` to `0.14.0`
1531
- Upgrade `iced_core` to `0.14.0`
@@ -58,6 +74,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5874

5975
- (**breaking changes**) `iced_term::Subscription`
6076

61-
[unreleased]: https://github.com/Harzu/iced_term/compare/0.7.0...HEAD
77+
[unreleased]: https://github.com/Harzu/iced_term/compare/0.8.0...HEAD
78+
[0.8.0]: https://github.com/Harzu/iced_term/compare/0.7.0...0.8.0
6279
[0.7.0]: https://github.com/Harzu/iced_term/compare/0.6.0...0.7.0
6380
[0.6.0]: https://github.com/Harzu/iced_term/compare/0.5.1...0.6.0

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ iced = "0.14.0"
66

77
[workspace.package]
88
edition = "2021"
9-
version = "0.7.0"
9+
version = "0.8.0"
1010
repository = "https://github.com/Harzu/iced_term"
1111
license = "MIT"
1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This widget was tested on MacOS, Linux and Windows.
5050
From crates.io
5151

5252
```toml
53-
iced_term = "0.7.0"
53+
iced_term = "0.8.0"
5454
```
5555

5656
From git

0 commit comments

Comments
 (0)