Skip to content

Commit 4808fcb

Browse files
committed
Bump versions 🎉
1 parent f37a658 commit 4808fcb

File tree

8 files changed

+15
-10
lines changed

8 files changed

+15
-10
lines changed

CHANGELOG.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.1.1] - 2020-04-15
810
### Added
911
- `Settings::with_flags` to easily initialize some default settings with flags. [#266]
1012
- `Default` implementation for `canvas::layer::Cache`. [#267]
1113
- `Ctrl + Del` support for `TextInput`. [#268]
12-
- Helper methods in `canvas::Path` to easily draw lines, rectangles, and circles.
14+
- Helper methods in `canvas::Path` to easily draw lines, rectangles, and circles. [#293]
1315
- `From<Color>` implementation for `canvas::Fill`. [#293]
1416
- `From<String>` implementation for `canvas::Text`. [#293]
1517
- `From<&str>` implementation for `canvas::Text`. [#293]
@@ -31,12 +33,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3133
### Removed
3234
- Unnecessary `'static` lifetimes in `Renderer` bounds. [#290]
3335

34-
[#259]: https://github.com/hecrj/iced/pull/259
36+
[#259]: https://github.com/hecrj/iced/pull/259
3537
[#260]: https://github.com/hecrj/iced/pull/260
3638
[#266]: https://github.com/hecrj/iced/pull/266
39+
[#267]: https://github.com/hecrj/iced/pull/267
3740
[#268]: https://github.com/hecrj/iced/pull/268
3841
[#278]: https://github.com/hecrj/iced/pull/278
3942
[#279]: https://github.com/hecrj/iced/pull/279
43+
[#281]: https://github.com/hecrj/iced/pull/281
4044
[#289]: https://github.com/hecrj/iced/pull/289
4145
[#290]: https://github.com/hecrj/iced/pull/290
4246
[#293]: https://github.com/hecrj/iced/pull/293
@@ -106,7 +110,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
106110
### Added
107111
- First release! :tada:
108112

109-
[Unreleased]: https://github.com/hecrj/iced/compare/0.1.0...HEAD
113+
[Unreleased]: https://github.com/hecrj/iced/compare/0.1.1...HEAD
114+
[0.1.1]: https://github.com/hecrj/iced/compare/0.1.0...0.1.1
110115
[0.1.0]: https://github.com/hecrj/iced/compare/0.1.0-beta...0.1.0
111116
[0.1.0-beta]: https://github.com/hecrj/iced/compare/0.1.0-alpha...0.1.0-beta
112117
[0.1.0-alpha]: https://github.com/hecrj/iced/releases/tag/0.1.0-alpha

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "A cross-platform GUI library inspired by Elm"

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_core"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "The essential concepts of Iced"

futures/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_futures"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "Commands, subscriptions, and runtimes for Iced"

native/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_native"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "A renderer-agnostic library for native GUIs"

web/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_web"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "A web backend for Iced"

wgpu/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_wgpu"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "A wgpu renderer for Iced"

winit/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_winit"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "A winit runtime for Iced"

0 commit comments

Comments
 (0)