Skip to content

Commit c02452d

Browse files
authored
Prepare for releasing v0.8.3. (#2365)
1 parent c705f4e commit c02452d

File tree

8 files changed

+46
-35
lines changed

8 files changed

+46
-35
lines changed

CHANGELOG.md

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
11
# Changelog
22

3-
The latest published Druid release is [0.8.2](#082---2023-01-27) which was released on 2023-01-27.
4-
You can find its changes [documented below](#082---2023-01-27).
3+
The latest published Druid release is [0.8.3](#083---2023-02-28) which was released on 2023-02-28.
4+
You can find its changes [documented below](#083---2023-02-28).
55

66
## [Unreleased]
77

88
### Highlights
99

1010
### Added
1111

12-
- Input Region and Always On Top support. ([#2328] by [@jaredoconnell])
13-
- `foreground`, `set_foreground`, and `clear_foreground` methods to `Container` and `WidgetExt::foreground` method for convenience. ([#2346] by [@giannissc])
14-
- `WindowHandle::hide` method to hide a window. ([#2191] by [@newcomb-luke])
15-
1612
### Changed
1713

1814
### Deprecated
@@ -21,25 +17,39 @@ You can find its changes [documented below](#082---2023-01-27).
2117

2218
### Fixed
2319

24-
- `AddTab` is now properly exported from the `widget` module. ([#2351] by [@cbondurant])
25-
2620
### Visual
2721

2822
### Docs
2923

24+
### Examples
25+
26+
### Maintenance
27+
28+
### Outside News
29+
30+
## [0.8.3] - 2023-02-28
31+
32+
### Added
33+
34+
- Input Region and Always On Top support. ([#2328] by [@jaredoconnell])
35+
- `foreground`, `set_foreground`, and `clear_foreground` methods to `Container` and `WidgetExt::foreground` method for convenience. ([#2346] by [@giannissc])
36+
- `WindowHandle::hide` method to hide a window. ([#2191] by [@newcomb-luke])
37+
38+
### Fixed
39+
40+
- `AddTab` is now properly exported from the `widget` module. ([#2351] by [@cbondurant])
41+
42+
### Docs
43+
3044
- `Widget`, `WidgetExt`, `WidgetId`, `Lens` and `LensExt` docs are visible again. ([#2356] by [@xStrom])
3145
- Deprecated items are now hidden. ([#2356] by [@xStrom])
3246
- Fixed `rustdoc` example scraping configuration. ([#2353] by [@xStrom])
3347
- Added info about git symlinks to `CONTRIBUTING.md`. ([#2349] by [@xStrom])
3448

35-
### Examples
36-
3749
### Maintenance
3850

3951
- Synchronized `kurbo` and `image` imports with `piet-common`. ([#2352] by [@xStrom])
4052

41-
### Outside News
42-
4353
## [0.8.2] - 2023-01-27
4454

4555
### Docs
@@ -1217,7 +1227,8 @@ Last release without a changelog :(
12171227
[#2353]: https://github.com/linebender/druid/pull/2353
12181228
[#2356]: https://github.com/linebender/druid/pull/2356
12191229

1220-
[Unreleased]: https://github.com/linebender/druid/compare/v0.8.2...master
1230+
[Unreleased]: https://github.com/linebender/druid/compare/v0.8.3...master
1231+
[0.8.3]: https://github.com/linebender/druid/compare/v0.8.2...v0.8.3
12211232
[0.8.2]: https://github.com/linebender/druid/compare/v0.8.1...v0.8.2
12221233
[0.8.1]: https://github.com/linebender/druid/compare/v0.8.0...v0.8.1
12231234
[0.8.0]: https://github.com/linebender/druid/compare/v0.7.0...v0.8.0

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ a lone dependency (it re-exports all the parts of `druid-shell`, `piet`, and `ku
8989
that you'll need):
9090

9191
```toml
92-
druid = "0.8.2"
92+
druid = "0.8.3"
9393
```
9494

9595
Since Druid is currently in fast-evolving state, you might prefer to drink from
@@ -322,14 +322,14 @@ active and friendly community. See the AUTHORS file for more.
322322
[Zulip chat instance]: https://xi.zulipchat.com
323323
[non-`druid` examples]: /druid-shell/examples/shello.rs
324324
[crates.io]: https://crates.io/crates/druid
325-
[EventCtx]: https://docs.rs/druid/0.8.2/druid/struct.EventCtx.html
326-
[LifeCycleCtx]: https://docs.rs/druid/0.8.2/druid/struct.LifeCycleCtx.html
327-
[LayoutCtx]: https://docs.rs/druid/0.8.2/druid/struct.LayoutCtx.html
328-
[PaintCtx]: https://docs.rs/druid/0.8.2/druid/struct.PaintCtx.html
329-
[UpdateCtx]: https://docs.rs/druid/0.8.2/druid/struct.UpdateCtx.html
330-
[Widget trait]: https://docs.rs/druid/0.8.2/druid/trait.Widget.html
331-
[Data trait]: https://docs.rs/druid/0.8.2/druid/trait.Data.html
332-
[Lens datatype]: https://docs.rs/druid/0.8.2/druid/trait.Lens.html
325+
[EventCtx]: https://docs.rs/druid/0.8.3/druid/struct.EventCtx.html
326+
[LifeCycleCtx]: https://docs.rs/druid/0.8.3/druid/struct.LifeCycleCtx.html
327+
[LayoutCtx]: https://docs.rs/druid/0.8.3/druid/struct.LayoutCtx.html
328+
[PaintCtx]: https://docs.rs/druid/0.8.3/druid/struct.PaintCtx.html
329+
[UpdateCtx]: https://docs.rs/druid/0.8.3/druid/struct.UpdateCtx.html
330+
[Widget trait]: https://docs.rs/druid/0.8.3/druid/trait.Widget.html
331+
[Data trait]: https://docs.rs/druid/0.8.3/druid/trait.Data.html
332+
[Lens datatype]: https://docs.rs/druid/0.8.3/druid/trait.Lens.html
333333
[Druid book]: https://linebender.org/druid/
334334
[Iced]: https://github.com/hecrj/iced
335335
[Conrod]: https://github.com/PistonDevelopers/conrod

docs/src/08_widgets_in_depth.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ textbox fire some action (say doing a search) 300ms after the last keypress:
6666
{{#include ../book_examples/src/custom_widgets_md.rs:annoying_textbox}}
6767
```
6868

69-
[`Controller`]: https://docs.rs/druid/0.8.2/druid/widget/trait.Controller.html
69+
[`Controller`]: https://docs.rs/druid/0.8.3/druid/widget/trait.Controller.html
7070
[`Widget`]: ./widget.md
71-
[`Painter`]: https://docs.rs/druid/0.8.2/druid/widget/struct.Painter.html
72-
[`SizedBox`]: https://docs.rs/druid/0.8.2/druid/widget/struct.SizedBox.html
73-
[`Container`]: https://docs.rs/druid/0.8.2/druid/widget/struct.Container.html
74-
[`WidgetExt`]: https://docs.rs/druid/0.8.2/druid/trait.WidgetExt.html
75-
[`background`]: https://docs.rs/druid/0.8.2/druid/trait.WidgetExt.html#background
71+
[`Painter`]: https://docs.rs/druid/0.8.3/druid/widget/struct.Painter.html
72+
[`SizedBox`]: https://docs.rs/druid/0.8.3/druid/widget/struct.SizedBox.html
73+
[`Container`]: https://docs.rs/druid/0.8.3/druid/widget/struct.Container.html
74+
[`WidgetExt`]: https://docs.rs/druid/0.8.3/druid/trait.WidgetExt.html
75+
[`background`]: https://docs.rs/druid/0.8.3/druid/trait.WidgetExt.html#background

druid-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ quote = "1.0.23"
2020
proc-macro2 = "1.0.51"
2121

2222
[dev-dependencies]
23-
druid = { version = "0.8.2", path = "../druid" }
23+
druid = { version = "0.8.3", path = "../druid" }
2424
trybuild = "1.0"
2525

2626
float-cmp = { version = "0.9.0", features = ["std"], default-features = false }

druid-shell/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "druid-shell"
3-
version = "0.8.0"
3+
version = "0.8.3"
44
license = "Apache-2.0"
55
authors = ["Raph Levien <[email protected]>"]
66
description = "Platform abstracting application shell used for Druid toolkit."

druid/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "druid"
3-
version = "0.8.2"
3+
version = "0.8.3"
44
license = "Apache-2.0"
55
authors = ["Raph Levien <[email protected]>"]
66
description = "Data-oriented Rust UI design toolkit."
@@ -51,7 +51,7 @@ hdr = ["druid-shell/hdr"]
5151
image-all = ["image", "svg", "png", "jpeg", "jpeg_rayon", "gif", "bmp", "ico", "tiff", "webp", "pnm", "dds", "tga", "farbfeld", "dxt", "hdr"]
5252

5353
[dependencies]
54-
druid-shell = { version = "0.8.0", default-features = false, path = "../druid-shell" }
54+
druid-shell = { version = "0.8.3", default-features = false, path = "../druid-shell" }
5555
druid-derive = { version = "0.5.0", path = "../druid-derive" }
5656

5757
tracing = { version = "0.1.37" }

druid/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
//! Features can be added with `cargo`. For example, in your `Cargo.toml`:
126126
//! ```no_compile
127127
//! [dependencies.druid]
128-
//! version = "0.8.2"
128+
//! version = "0.8.3"
129129
//! features = ["im", "svg", "image"]
130130
//! ```
131131
//!
@@ -136,7 +136,7 @@
136136
//! crate.
137137
//!
138138
//! [`druid-shell`]: druid_shell
139-
//! [`druid/examples`]: https://github.com/linebender/druid/tree/v0.8.2/druid/examples
139+
//! [`druid/examples`]: https://github.com/linebender/druid/tree/v0.8.3/druid/examples
140140
//! [Druid book]: https://linebender.org/druid/
141141
//! [`im` crate]: https://crates.io/crates/im
142142
//! [`im` module]: im/index.html

druid/src/widget/flex.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ impl<T: Data> Flex<T> {
568568
flex: params.flex,
569569
}
570570
} else {
571-
tracing::warn!("Flex value should be > 0.0. To add a non-flex child use the add_child or with_child methods.\nSee the docs for more information: https://docs.rs/druid/0.8.2/druid/widget/struct.Flex.html");
571+
tracing::warn!("Flex value should be > 0.0. To add a non-flex child use the add_child or with_child methods.\nSee the docs for more information: https://docs.rs/druid/0.8.3/druid/widget/struct.Flex.html");
572572
Child::Fixed {
573573
widget: WidgetPod::new(Box::new(child)),
574574
alignment: None,

0 commit comments

Comments
 (0)