diff options
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | Cargo.toml | 10 | ||||
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | core/Cargo.toml | 2 | ||||
| -rw-r--r-- | core/README.md | 2 | ||||
| -rw-r--r-- | futures/Cargo.toml | 2 | ||||
| -rw-r--r-- | native/Cargo.toml | 6 | ||||
| -rw-r--r-- | native/README.md | 2 | ||||
| -rw-r--r-- | style/Cargo.toml | 4 | ||||
| -rw-r--r-- | web/Cargo.toml | 11 | ||||
| -rw-r--r-- | web/README.md | 2 | ||||
| -rw-r--r-- | wgpu/Cargo.toml | 12 | ||||
| -rw-r--r-- | wgpu/README.md | 2 | ||||
| -rw-r--r-- | winit/Cargo.toml | 4 | ||||
| -rw-r--r-- | winit/README.md | 4 | 
15 files changed, 43 insertions, 30 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ce2716ca..8652fa63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).  ## [Unreleased] + + +## [0.1.0] - 2020-04-02  ### Added  - __[Event subscriptions]__ (#122)      A declarative way to listen to external events asynchronously by leveraging [streams]. @@ -69,5 +72,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0  - First release! :tada:  [Unreleased]: https://github.com/hecrj/iced/compare/0.1.0...HEAD +[0.1.0]: https://github.com/hecrj/iced/compare/0.1.0-beta...0.1.0  [0.1.0-beta]: https://github.com/hecrj/iced/compare/0.1.0-alpha...0.1.0-beta  [0.1.0-alpha]: https://github.com/hecrj/iced/releases/tag/0.1.0-alpha @@ -1,6 +1,6 @@  [package]  name = "iced" -version = "0.1.0-beta" +version = "0.1.0"  authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]  edition = "2018"  description = "A cross-platform GUI library inspired by Elm" @@ -57,11 +57,11 @@ members = [  ]  [dependencies] -iced_futures = { version = "0.1.0-alpha", path = "futures" } +iced_futures = { version = "0.1", path = "futures" }  [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -iced_winit = { version = "0.1.0-alpha", path = "winit" } -iced_wgpu = { version = "0.1.0", path = "wgpu" } +iced_winit = { version = "0.1", path = "winit" } +iced_wgpu = { version = "0.2", path = "wgpu" }  [target.'cfg(target_arch = "wasm32")'.dependencies] -iced_web = { version = "0.1.0", path = "web" } +iced_web = { version = "0.2", path = "web" } @@ -1,7 +1,7 @@  # Iced  [](https://github.com/hecrj/iced/actions)  [][documentation] -[](https://crates.io/crates/iced/0.1.0-beta) +[](https://crates.io/crates/iced)  [](https://github.com/hecrj/iced/blob/master/LICENSE)  [](https://iced.zulipchat.com) @@ -55,7 +55,7 @@ __Iced is currently experimental software.__ [Take a look at the roadmap],  Add `iced` as a dependency in your `Cargo.toml`:  ```toml -iced = "0.1.0-beta" +iced = "0.1"  ```  __Iced moves fast and the `master` branch can contain breaking changes!__ If @@ -217,7 +217,7 @@ the [Rust Community Discord]. I go by `lone_scientist#9554` there.  ## Sponsors  The development of Iced is sponsored by the [Cryptowatch] team at [Kraken.com] -[documentation]: https://docs.rs/iced/0.1.0-beta/iced/ +[documentation]: https://docs.rs/iced/  [examples]: https://github.com/hecrj/iced/tree/master/examples  [Coffee]: https://github.com/hecrj/coffee  [Elm]: https://elm-lang.org/ diff --git a/core/Cargo.toml b/core/Cargo.toml index 22bc7ceb..24e9513a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@  [package]  name = "iced_core" -version = "0.1.0" +version = "0.2.0"  authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]  edition = "2018"  description = "The essential concepts of Iced" diff --git a/core/README.md b/core/README.md index 31630ea8..641612c0 100644 --- a/core/README.md +++ b/core/README.md @@ -16,7 +16,7 @@ This crate is meant to be a starting point for an Iced runtime.  Add `iced_core` as a dependency in your `Cargo.toml`:  ```toml -iced_core = "0.1.0" +iced_core = "0.2"  ```  __Iced moves fast and the `master` branch can contain breaking changes!__ If diff --git a/futures/Cargo.toml b/futures/Cargo.toml index 483e60cb..869a30ba 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -1,6 +1,6 @@  [package]  name = "iced_futures" -version = "0.1.0-alpha" +version = "0.1.0"  authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]  edition = "2018"  description = "Commands, subscriptions, and runtimes for Iced" diff --git a/native/Cargo.toml b/native/Cargo.toml index 6276535e..eb21c262 100644 --- a/native/Cargo.toml +++ b/native/Cargo.toml @@ -1,6 +1,6 @@  [package]  name = "iced_native" -version = "0.1.0" +version = "0.2.0"  authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]  edition = "2018"  description = "A renderer-agnostic library for native GUIs" @@ -13,10 +13,10 @@ raw-window-handle = "0.3"  unicode-segmentation = "1.6"  [dependencies.iced_core] -version = "0.1.0" +version = "0.2"  path = "../core"  [dependencies.iced_futures] -version = "0.1.0-alpha" +version = "0.1"  path = "../futures"  features = ["thread-pool"] diff --git a/native/README.md b/native/README.md index 59ec5424..31c7db88 100644 --- a/native/README.md +++ b/native/README.md @@ -26,7 +26,7 @@ To achieve this, it introduces a bunch of reusable interfaces:  Add `iced_native` as a dependency in your `Cargo.toml`:  ```toml -iced_native = "0.1.0" +iced_native = "0.2"  ```  __Iced moves fast and the `master` branch can contain breaking changes!__ If diff --git a/style/Cargo.toml b/style/Cargo.toml index 5928c60d..abc64c0f 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -1,6 +1,6 @@  [package]  name = "iced_style" -version = "0.1.0-alpha" +version = "0.1.0"  authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]  edition = "2018"  description = "The default set of styles of Iced" @@ -11,4 +11,4 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"]  categories = ["gui"]  [dependencies] -iced_core = { version = "0.1.0", path = "../core" } +iced_core = { version = "0.2", path = "../core" } diff --git a/web/Cargo.toml b/web/Cargo.toml index c043c697..a0c7c609 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -1,6 +1,6 @@  [package]  name = "iced_web" -version = "0.1.0" +version = "0.2.0"  authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]  edition = "2018"  description = "A web backend for Iced" @@ -15,20 +15,23 @@ categories = ["web-programming"]  maintenance = { status = "actively-developed" }  [dependencies] -iced_style = { version = "0.1.0-alpha", path = "../style" }  dodrio = "0.1.0"  wasm-bindgen = "0.2.51"  wasm-bindgen-futures = "0.4"  url = "2.0"  [dependencies.iced_core] -version = "0.1.0" +version = "0.2"  path = "../core"  [dependencies.iced_futures] -version = "0.1.0-alpha" +version = "0.1"  path = "../futures" +[dependencies.iced_style] +version = "0.1" +path = "../style" +  [dependencies.web-sys]  version = "0.3.27"  features = [ diff --git a/web/README.md b/web/README.md index 1b818ab6..810bd1ec 100644 --- a/web/README.md +++ b/web/README.md @@ -18,7 +18,7 @@ The crate is currently a __very experimental__, simple abstraction layer over [`  Add `iced_web` as a dependency in your `Cargo.toml`:  ```toml -iced_web = "0.1.0" +iced_web = "0.2"  ```  __Iced moves fast and the `master` branch can contain breaking changes!__ If diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index 6c75af7b..ca906894 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -1,6 +1,6 @@  [package]  name = "iced_wgpu" -version = "0.1.0" +version = "0.2.0"  authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]  edition = "2018"  description = "A wgpu renderer for Iced" @@ -12,8 +12,6 @@ svg = ["resvg"]  canvas = ["lyon"]  [dependencies] -iced_native = { version = "0.1.0", path = "../native" } -iced_style = { version = "0.1.0-alpha", path = "../style" }  wgpu = "0.4"  wgpu_glyph = "0.7"  glyph_brush = "0.6" @@ -23,6 +21,14 @@ font-kit = "0.4"  log = "0.4"  guillotiere = "0.4" +[dependencies.iced_native] +version = "0.2" +path = "../native" + +[dependencies.iced_style] +version = "0.1" +path = "../style" +  [dependencies.image]  version = "0.22"  optional = true diff --git a/wgpu/README.md b/wgpu/README.md index cd80379e..67cb59dd 100644 --- a/wgpu/README.md +++ b/wgpu/README.md @@ -27,7 +27,7 @@ Currently, `iced_wgpu` supports the following primitives:  Add `iced_wgpu` as a dependency in your `Cargo.toml`:  ```toml -iced_wgpu = "0.1.0" +iced_wgpu = "0.2"  ```  __Iced moves fast and the `master` branch can contain breaking changes!__ If diff --git a/winit/Cargo.toml b/winit/Cargo.toml index a3b1613d..f59254c1 100644 --- a/winit/Cargo.toml +++ b/winit/Cargo.toml @@ -1,6 +1,6 @@  [package]  name = "iced_winit" -version = "0.1.0-alpha" +version = "0.1.0"  authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]  edition = "2018"  description = "A winit runtime for Iced" @@ -19,7 +19,7 @@ window_clipboard = "0.1"  log = "0.4"  [dependencies.iced_native] -version = "0.1.0" +version = "0.2"  path = "../native"  [target.'cfg(target_os = "windows")'.dependencies.winapi] diff --git a/winit/README.md b/winit/README.md index d3309e49..34dec1b3 100644 --- a/winit/README.md +++ b/winit/README.md @@ -10,7 +10,7 @@ It exposes a renderer-agnostic `Application` trait that can be implemented and t   -[documentation]: https://docs.rs/iced_winit/0.1.0-alpha.1/iced_winit/ +[documentation]: https://docs.rs/iced_winit  [`iced_native`]: ../native  [`winit`]: https://github.com/rust-windowing/winit @@ -18,7 +18,7 @@ It exposes a renderer-agnostic `Application` trait that can be implemented and t  Add `iced_winit` as a dependency in your `Cargo.toml`:  ```toml -iced_winit = "0.1.0-alpha" +iced_winit = "0.1"  ```  __Iced moves fast and the `master` branch can contain breaking changes!__ If  | 
