Skip to content

Commit cf7ea85

Browse files
committed
Merge branch 'main' into v0.1.x
2 parents 77eb190 + 7dc00f2 commit cf7ea85

File tree

6 files changed

+22
-19
lines changed

6 files changed

+22
-19
lines changed

.crate-docs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ pull requests, as it ensures changes fit the vision the maintainers have for
5959
Gooey.
6060

6161
[widget]: crate::widget::Widget
62+
[widgets]: mod@crate::widgets
63+
[button-example]: https://github.com/khonsulabs/gooey/tree/v0.1.1/examples/basic-button.rs
64+
[examples]: https://github.com/khonsulabs/gooey/tree/v0.1.1/examples/
6265
[kludgine]: https://github.com/khonsulabs/kludgine
6366
[figures]: https://github.com/khonsulabs/figures
6467
[wgpu]: https://github.com/gfx-rs/wgpu
6568
[winit]: https://github.com/rust-windowing/winit
66-
[widgets]: mod@crate::widgets
67-
[button-example]: https://github.com/khonsulabs/gooey/tree/main/examples/basic-button.rs
68-
[examples]: https://github.com/khonsulabs/gooey/tree/main/examples/
6969
[cosmic_text]: https://github.com/pop-os/cosmic-text
7070
[palette]: https://github.com/Ogeon/palette
7171
[arboard]: https://github.com/1Password/arboard

.rustme/config.ron

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
Configuration(
22
files: {
3-
"../README.md": [
4-
"header.md",
5-
"docs.md",
6-
"https://github.com/khonsulabs/.github/raw/main/snippets/readme-footer.md",
7-
],
3+
"../README.md": (
4+
for_docs: false,
5+
sections: [
6+
"header.md",
7+
"docs.md",
8+
"https://github.com/khonsulabs/.github/raw/main/snippets/readme-footer.md",
9+
],
10+
),
811
"../.crate-docs.md": (
912
for_docs: true,
1013
sections: [
@@ -31,7 +34,7 @@ Configuration(
3134
// "msrv": "1.70",
3235
"ref-name": (
3336
default: "main",
34-
release: "v0.1.0",
37+
release: "v0.1.1",
3538
),
3639
"docs": (
3740
default: "https://gooey.rs/main/gooey/",

.rustme/docs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ and problem it aims to solve. Doing so will help prevent friction in merging
4545
pull requests, as it ensures changes fit the vision the maintainers have for
4646
Gooey.
4747

48-
[widget]: crate::widget::Widget
48+
[widget]: $widget$
49+
[widgets]: $widgets$
50+
[button-example]: https://github.com/khonsulabs/gooey/tree/$ref-name$/examples/basic-button.rs
51+
[examples]: https://github.com/khonsulabs/gooey/tree/$ref-name$/examples/
4952
[kludgine]: https://github.com/khonsulabs/kludgine
5053
[figures]: https://github.com/khonsulabs/figures
5154
[wgpu]: https://github.com/gfx-rs/wgpu
5255
[winit]: https://github.com/rust-windowing/winit
53-
[widgets]: mod@crate::widgets
54-
[button-example]: https://github.com/khonsulabs/gooey/tree/main/examples/basic-button.rs
55-
[examples]: https://github.com/khonsulabs/gooey/tree/main/examples/
5656
[cosmic_text]: https://github.com/pop-os/cosmic-text
5757
[palette]: https://github.com/Ogeon/palette
5858
[arboard]: https://github.com/1Password/arboard

Cargo.lock

Lines changed: 1 addition & 1 deletion
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
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "gooey"
5-
version = "0.1.0"
5+
version = "0.1.1"
66
edition = "2021"
77
description = "A wgpu-powered graphical user interface (GUI) library with a reactive data model"
88
repository = "https://github.com/khonsulabs/gooey"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ and problem it aims to solve. Doing so will help prevent friction in merging
6060
pull requests, as it ensures changes fit the vision the maintainers have for
6161
Gooey.
6262

63-
[widget]: crate::widget::Widget
63+
[widget]: https://docs.rs/gooey/*/gooey/widget/trait.Widget.html
64+
[widgets]: https://docs.rs/gooey/*/gooey/widgets/index.html
65+
[button-example]: https://github.com/khonsulabs/gooey/tree/v0.1.1/examples/basic-button.rs
66+
[examples]: https://github.com/khonsulabs/gooey/tree/v0.1.1/examples/
6467
[kludgine]: https://github.com/khonsulabs/kludgine
6568
[figures]: https://github.com/khonsulabs/figures
6669
[wgpu]: https://github.com/gfx-rs/wgpu
6770
[winit]: https://github.com/rust-windowing/winit
68-
[widgets]: mod@crate::widgets
69-
[button-example]: https://github.com/khonsulabs/gooey/tree/main/examples/basic-button.rs
70-
[examples]: https://github.com/khonsulabs/gooey/tree/main/examples/
7171
[cosmic_text]: https://github.com/pop-os/cosmic-text
7272
[palette]: https://github.com/Ogeon/palette
7373
[arboard]: https://github.com/1Password/arboard

0 commit comments

Comments
 (0)