Skip to content
This repository was archived by the owner on Mar 4, 2024. It is now read-only.

Commit b4df95b

Browse files
authored
Merge pull request #708 from sdroege/0.15.1-release
Update versions to 0.15.1
2 parents e33ad9e + 283ecfe commit b4df95b

File tree

13 files changed

+66
-66
lines changed

13 files changed

+66
-66
lines changed

atk/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "atk"
77
homepage = "https://gtk-rs.org/"
88
authors = ["The gtk-rs Project Developers"]
99
readme = "README.md"
10-
version = "0.15.0"
10+
version = "0.15.1"
1111
keywords = ["atk", "gtk-rs", "gnome", "accessibility"]
1212
repository = "https://github.com/gtk-rs/gtk3-rs"
1313
exclude = [
@@ -32,8 +32,8 @@ features = ["dox"]
3232
[dependencies]
3333
libc = "0.2"
3434
bitflags = "1.0"
35-
ffi = {package = "atk-sys", path = "sys", version = "0.15.0"}
36-
glib = "0.15.0"
35+
ffi = {package = "atk-sys", path = "sys", version = "0.15.1"}
36+
glib = "0.15.1"
3737

3838
[dev-dependencies]
3939
gir-format-check = "^0.1"

atk/sys/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ libc = "0.2"
66

77
[dependencies.glib]
88
package = "glib-sys"
9-
version = "0.15.0"
9+
version = "0.15.1"
1010

1111
[dependencies.gobject]
1212
package = "gobject-sys"
13-
version = "0.15.0"
13+
version = "0.15.1"
1414

1515
[dev-dependencies]
1616
shell-words = "1.0.0"
@@ -36,7 +36,7 @@ license = "MIT"
3636
links = "atk-1.0"
3737
name = "atk-sys"
3838
repository = "https://github.com/gtk-rs/gtk3-rs"
39-
version = "0.15.0"
39+
version = "0.15.1"
4040
edition = "2021"
4141
rust-version = "1.56"
4242

examples/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ futures-util = "0.3"
1111
once_cell = "1.2.0"
1212

1313
[dependencies.glib]
14-
version = "0.15.0"
14+
version = "0.15.1"
1515

1616
[dependencies.gtk]
1717
path = "../gtk"
18-
version = "0.15.0"
18+
version = "0.15.1"
1919

2020
[dependencies.pangocairo]
2121
optional = true
22-
version = "0.15.0"
22+
version = "0.15.1"
2323

2424
[dependencies.cairo]
2525
package = "cairo-rs"
2626
features = ["png"]
2727
optional = true
28-
version = "0.15.0"
28+
version = "0.15.1"
2929

3030
[build-dependencies.gio]
3131
git = "https://github.com/gtk-rs/gtk-rs-core"

gdk/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["The gtk-rs Project Developers"]
66
keywords = ["gdk", "gtk", "gtk-rs", "gnome", "GUI"]
77
readme = "README.md"
88
documentation = "https://gtk-rs.org/gtk3-rs/stable/latest/docs/gdk/"
9-
version = "0.15.0"
9+
version = "0.15.1"
1010
description = "Rust bindings for the GDK 3 library"
1111
repository = "https://github.com/gtk-rs/gtk3-rs"
1212
exclude = [
@@ -30,12 +30,12 @@ features = ["dox"]
3030
[dependencies]
3131
libc = "0.2"
3232
bitflags = "1.0"
33-
ffi = {package = "gdk-sys", path = "sys", version = "0.15.0"}
34-
cairo-rs = "0.15.0"
35-
gdk-pixbuf = "0.15.0"
36-
gio = "0.15.0"
37-
glib = "0.15.0"
38-
pango = "0.15.0"
33+
ffi = {package = "gdk-sys", path = "sys", version = "0.15.1"}
34+
cairo-rs = "0.15.1"
35+
gdk-pixbuf = "0.15.1"
36+
gio = "0.15.1"
37+
glib = "0.15.1"
38+
pango = "0.15.1"
3939

4040
[dev-dependencies]
4141
gir-format-check = "^0.1"

gdk/sys/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@ libc = "0.2"
77

88
[dependencies.cairo]
99
package = "cairo-sys-rs"
10-
version = "0.15.0"
10+
version = "0.15.1"
1111

1212
[dependencies.gdk-pixbuf]
1313
package = "gdk-pixbuf-sys"
14-
version = "0.15.0"
14+
version = "0.15.1"
1515

1616
[dependencies.gio]
1717
package = "gio-sys"
18-
version = "0.15.0"
18+
version = "0.15.1"
1919

2020
[dependencies.glib]
2121
package = "glib-sys"
22-
version = "0.15.0"
22+
version = "0.15.1"
2323

2424
[dependencies.gobject]
2525
package = "gobject-sys"
26-
version = "0.15.0"
26+
version = "0.15.1"
2727

2828
[dependencies.pango]
2929
package = "pango-sys"
30-
version = "0.15.0"
30+
version = "0.15.1"
3131

3232
[dev-dependencies]
3333
shell-words = "1.0.0"
@@ -52,7 +52,7 @@ license = "MIT"
5252
links = "gdk-3"
5353
name = "gdk-sys"
5454
repository = "https://github.com/gtk-rs/gtk3-rs"
55-
version = "0.15.0"
55+
version = "0.15.1"
5656
edition = "2021"
5757
rust-version = "1.56"
5858

gdkwayland/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "gdkwayland"
1010
readme = "README.md"
1111
repository = "https://github.com/gtk-rs/gtk3-rs"
12-
version = "0.15.0"
12+
version = "0.15.1"
1313
rust-version = "1.56"
1414

1515
[features]
@@ -22,9 +22,9 @@ dox = ["ffi/dox"]
2222
features = ["dox"]
2323

2424
[dependencies]
25-
ffi = {path = "./sys", package = "gdkwayland-sys", version = "0.15.0"}
26-
gdk = {path = "../gdk", version = "0.15.0"}
27-
glib = "0.15.0"
25+
ffi = {path = "./sys", package = "gdkwayland-sys", version = "0.15.1"}
26+
gdk = {path = "../gdk", version = "0.15.1"}
27+
glib = "0.15.1"
2828
libc = "0.2"
2929
wayland-client = {version = "0.29", features = ["use_system_lib"]}
3030

gdkwayland/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Currently, the minimum supported Rust version is `1.56.0`.
1313

1414
## Documentation
1515

16-
* [Rust API - Stable](https://gtk-rs.org/gtk3-rs/stable/latest/docs/gdk-wayland/)
17-
* [Rust API - Development](https://gtk-rs.org/gtk3-rs/git/docs/gdk-wayland)
16+
* [Rust API - Stable](https://gtk-rs.org/gtk3-rs/stable/latest/docs/gdkwayland/)
17+
* [Rust API - Development](https://gtk-rs.org/gtk3-rs/git/docs/gdkwayland)
1818
* [C API](https://developer.gnome.org/gdk3/stable/)
1919
* [GTK Installation instructions](https://www.gtk.org/docs/installations/)
2020

@@ -27,16 +27,16 @@ If you want to track the bleeding edge, use the git dependency instead:
2727

2828
```toml
2929
[dependencies]
30-
gdk-wayland = { git = "https://github.com/gtk-rs/gtk3-rs.git", package = "gdk-wayland" }
30+
gdkwayland = { git = "https://github.com/gtk-rs/gtk3-rs.git", package = "gdkwayland" }
3131
```
3232

3333
Avoid mixing versioned and git crates like this:
3434

3535
```toml
3636
# This will not compile
3737
[dependencies]
38-
gdk-wayland = "0.15"
39-
gdk-wayland = { git = "https://github.com/gtk-rs/gtk3-rs.git", package = "gdk-wayland" }
38+
gdkwayland = "0.15"
39+
gdkwayland = { git = "https://github.com/gtk-rs/gtk3-rs.git", package = "gdkwayland" }
4040
```
4141

4242
### See Also

gdkwayland/sys/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["gdk", "ffi", "gtk-rs", "gnome"]
66
license = "MIT"
77
name = "gdkwayland-sys"
88
repository = "https://github.com/gtk-rs/gtk3-rs"
9-
version = "0.15.0"
9+
version = "0.15.1"
1010
edition = "2021"
1111
rust-version = "1.56"
1212

@@ -24,16 +24,16 @@ libc = "0.2"
2424

2525
[dependencies.glib]
2626
package = "glib-sys"
27-
version = "0.15.0"
27+
version = "0.15.1"
2828

2929
[dependencies.gobject]
3030
package = "gobject-sys"
31-
version = "0.15.0"
31+
version = "0.15.1"
3232

3333
[dependencies.gdk]
3434
package = "gdk-sys"
3535
path = "../../gdk/sys"
36-
version = "0.15.0"
36+
version = "0.15.1"
3737

3838
[build-dependencies]
3939
pkg-config = "0.3.7"

gdkx11/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["The gtk-rs Project Developers"]
66
keywords = ["gdkx11", "gdk", "gtk-rs", "gnome", "GUI"]
77
readme = "README.md"
88
documentation = "https://gtk-rs.org/gtk3-rs/stable/latest/docs/gdkx11/"
9-
version = "0.15.0"
9+
version = "0.15.1"
1010
description = "Rust bindings for the GDK X11 library"
1111
repository = "https://github.com/gtk-rs/gtk3-rs"
1212
exclude = [
@@ -31,10 +31,10 @@ features = ["dox"]
3131
[dependencies]
3232
libc = "0.2"
3333
x11 = "2.18"
34-
ffi = {package = "gdkx11-sys", path = "sys", version = "0.15.0"}
35-
glib = "0.15.0"
36-
gdk = {path = "../gdk", version = "0.15.0"}
37-
gio = "0.15.0"
34+
ffi = {package = "gdkx11-sys", path = "sys", version = "0.15.1"}
35+
glib = "0.15.1"
36+
gdk = {path = "../gdk", version = "0.15.1"}
37+
gio = "0.15.1"
3838

3939
[dev-dependencies]
4040
gir-format-check = "^0.1"

gdkx11/sys/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["gdkx11", "ffi", "gtk-rs", "gnome"]
66
license = "MIT"
77
repository = "https://github.com/gtk-rs/gtk3-rs"
88
name = "gdkx11-sys"
9-
version = "0.15.0"
9+
version = "0.15.1"
1010
build = "build.rs"
1111
edition = "2021"
1212
rust-version = "1.56"
@@ -34,16 +34,16 @@ x11 = "2.18"
3434
[dependencies.gdk]
3535
package = "gdk-sys"
3636
path = "../../gdk/sys"
37-
version = "0.15.0"
37+
version = "0.15.1"
3838

3939
[dependencies.glib]
4040
package = "glib-sys"
41-
version = "0.15.0"
41+
version = "0.15.1"
4242

4343
[dependencies.cairo]
4444
package = "cairo-sys-rs"
4545
optional = true
46-
version = "0.15.0"
46+
version = "0.15.1"
4747

4848
[build-dependencies]
4949
system-deps = "6"

0 commit comments

Comments
 (0)