Skip to content

Commit d0cca65

Browse files
committed
Bump all versions 🎉
1 parent d7a3ce4 commit d0cca65

15 files changed

+43
-30
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ 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+
10+
## [0.1.0] - 2020-04-02
811
### Added
912
- __[Event subscriptions]__ (#122)
1013
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
6972
- First release! :tada:
7073

7174
[Unreleased]: https://github.com/hecrj/iced/compare/0.1.0...HEAD
75+
[0.1.0]: https://github.com/hecrj/iced/compare/0.1.0-beta...0.1.0
7276
[0.1.0-beta]: https://github.com/hecrj/iced/compare/0.1.0-alpha...0.1.0-beta
7377
[0.1.0-alpha]: https://github.com/hecrj/iced/releases/tag/0.1.0-alpha

Cargo.toml

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

5959
[dependencies]
60-
iced_futures = { version = "0.1.0-alpha", path = "futures" }
60+
iced_futures = { version = "0.1", path = "futures" }
6161

6262
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
63-
iced_winit = { version = "0.1.0-alpha", path = "winit" }
64-
iced_wgpu = { version = "0.1.0", path = "wgpu" }
63+
iced_winit = { version = "0.1", path = "winit" }
64+
iced_wgpu = { version = "0.2", path = "wgpu" }
6565

6666
[target.'cfg(target_arch = "wasm32")'.dependencies]
67-
iced_web = { version = "0.1.0", path = "web" }
67+
iced_web = { version = "0.2", path = "web" }

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Iced
22
[![Test Status](https://github.com/hecrj/iced/workflows/Test/badge.svg?event=push)](https://github.com/hecrj/iced/actions)
33
[![Documentation](https://docs.rs/iced/badge.svg)][documentation]
4-
[![Crates.io](https://img.shields.io/crates/v/iced.svg)](https://crates.io/crates/iced/0.1.0-beta)
4+
[![Crates.io](https://img.shields.io/crates/v/iced.svg)](https://crates.io/crates/iced)
55
[![License](https://img.shields.io/crates/l/iced.svg)](https://github.com/hecrj/iced/blob/master/LICENSE)
66
[![project chat](https://img.shields.io/badge/chat-on_zulip-brightgreen.svg)](https://iced.zulipchat.com)
77

@@ -55,7 +55,7 @@ __Iced is currently experimental software.__ [Take a look at the roadmap],
5555
Add `iced` as a dependency in your `Cargo.toml`:
5656

5757
```toml
58-
iced = "0.1.0-beta"
58+
iced = "0.1"
5959
```
6060

6161
__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.
217217
## Sponsors
218218
The development of Iced is sponsored by the [Cryptowatch] team at [Kraken.com]
219219

220-
[documentation]: https://docs.rs/iced/0.1.0-beta/iced/
220+
[documentation]: https://docs.rs/iced/
221221
[examples]: https://github.com/hecrj/iced/tree/master/examples
222222
[Coffee]: https://github.com/hecrj/coffee
223223
[Elm]: https://elm-lang.org/

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.1.0"
3+
version = "0.2.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "The essential concepts of Iced"

core/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This crate is meant to be a starting point for an Iced runtime.
1616
Add `iced_core` as a dependency in your `Cargo.toml`:
1717

1818
```toml
19-
iced_core = "0.1.0"
19+
iced_core = "0.2"
2020
```
2121

2222
__Iced moves fast and the `master` branch can contain breaking changes!__ If

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-alpha"
3+
version = "0.1.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "Commands, subscriptions, and runtimes for Iced"

native/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_native"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "A renderer-agnostic library for native GUIs"
@@ -13,10 +13,10 @@ raw-window-handle = "0.3"
1313
unicode-segmentation = "1.6"
1414

1515
[dependencies.iced_core]
16-
version = "0.1.0"
16+
version = "0.2"
1717
path = "../core"
1818

1919
[dependencies.iced_futures]
20-
version = "0.1.0-alpha"
20+
version = "0.1"
2121
path = "../futures"
2222
features = ["thread-pool"]

native/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To achieve this, it introduces a bunch of reusable interfaces:
2626
Add `iced_native` as a dependency in your `Cargo.toml`:
2727

2828
```toml
29-
iced_native = "0.1.0"
29+
iced_native = "0.2"
3030
```
3131

3232
__Iced moves fast and the `master` branch can contain breaking changes!__ If

style/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_style"
3-
version = "0.1.0-alpha"
3+
version = "0.1.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "The default set of styles of Iced"
@@ -11,4 +11,4 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"]
1111
categories = ["gui"]
1212

1313
[dependencies]
14-
iced_core = { version = "0.1.0", path = "../core" }
14+
iced_core = { version = "0.2", path = "../core" }

web/Cargo.toml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iced_web"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Héctor Ramón Jiménez <[email protected]>"]
55
edition = "2018"
66
description = "A web backend for Iced"
@@ -15,20 +15,23 @@ categories = ["web-programming"]
1515
maintenance = { status = "actively-developed" }
1616

1717
[dependencies]
18-
iced_style = { version = "0.1.0-alpha", path = "../style" }
1918
dodrio = "0.1.0"
2019
wasm-bindgen = "0.2.51"
2120
wasm-bindgen-futures = "0.4"
2221
url = "2.0"
2322

2423
[dependencies.iced_core]
25-
version = "0.1.0"
24+
version = "0.2"
2625
path = "../core"
2726

2827
[dependencies.iced_futures]
29-
version = "0.1.0-alpha"
28+
version = "0.1"
3029
path = "../futures"
3130

31+
[dependencies.iced_style]
32+
version = "0.1"
33+
path = "../style"
34+
3235
[dependencies.web-sys]
3336
version = "0.3.27"
3437
features = [

web/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The crate is currently a __very experimental__, simple abstraction layer over [`
1818
Add `iced_web` as a dependency in your `Cargo.toml`:
1919

2020
```toml
21-
iced_web = "0.1.0"
21+
iced_web = "0.2"
2222
```
2323

2424
__Iced moves fast and the `master` branch can contain breaking changes!__ If

wgpu/Cargo.toml

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

1414
[dependencies]
15-
iced_native = { version = "0.1.0", path = "../native" }
16-
iced_style = { version = "0.1.0-alpha", path = "../style" }
1715
wgpu = "0.4"
1816
wgpu_glyph = "0.7"
1917
glyph_brush = "0.6"
@@ -23,6 +21,14 @@ font-kit = "0.4"
2321
log = "0.4"
2422
guillotiere = "0.4"
2523

24+
[dependencies.iced_native]
25+
version = "0.2"
26+
path = "../native"
27+
28+
[dependencies.iced_style]
29+
version = "0.1"
30+
path = "../style"
31+
2632
[dependencies.image]
2733
version = "0.22"
2834
optional = true

wgpu/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Currently, `iced_wgpu` supports the following primitives:
2727
Add `iced_wgpu` as a dependency in your `Cargo.toml`:
2828

2929
```toml
30-
iced_wgpu = "0.1.0"
30+
iced_wgpu = "0.2"
3131
```
3232

3333
__Iced moves fast and the `master` branch can contain breaking changes!__ If

winit/Cargo.toml

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

2121
[dependencies.iced_native]
22-
version = "0.1.0"
22+
version = "0.2"
2323
path = "../native"
2424

2525
[target.'cfg(target_os = "windows")'.dependencies.winapi]

winit/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ It exposes a renderer-agnostic `Application` trait that can be implemented and t
1010

1111
![iced_winit](../docs/graphs/winit.png)
1212

13-
[documentation]: https://docs.rs/iced_winit/0.1.0-alpha.1/iced_winit/
13+
[documentation]: https://docs.rs/iced_winit
1414
[`iced_native`]: ../native
1515
[`winit`]: https://github.com/rust-windowing/winit
1616

1717
## Installation
1818
Add `iced_winit` as a dependency in your `Cargo.toml`:
1919

2020
```toml
21-
iced_winit = "0.1.0-alpha"
21+
iced_winit = "0.1"
2222
```
2323

2424
__Iced moves fast and the `master` branch can contain breaking changes!__ If

0 commit comments

Comments
 (0)