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

Commit dd66a84

Browse files
Merge pull request #780 from GuillaumeGomez/0-16-release
Ready crates for 0.16 release
2 parents 7aca469 + 1999fb8 commit dd66a84

File tree

12 files changed

+73
-25
lines changed

12 files changed

+73
-25
lines changed

atk/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ features = ["dox"]
3030
[dependencies]
3131
libc = "0.2"
3232
bitflags = "1.0"
33-
ffi = { package = "atk-sys", path = "sys" }
34-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
33+
ffi = { package = "atk-sys", path = "sys", version = "0.16" }
34+
glib = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
3535

3636
[dev-dependencies]
3737
gir-format-check = "^0.1"

atk/sys/Cargo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ libc = "0.2"
77
[dependencies.glib]
88
package = "glib-sys"
99
git = "https://github.com/gtk-rs/gtk-rs-core"
10+
version = "0.16"
11+
branch = "0.16"
1012

1113
[dependencies.gobject]
1214
package = "gobject-sys"
1315
git = "https://github.com/gtk-rs/gtk-rs-core"
16+
version = "0.16"
17+
branch = "0.16"
1418

1519
[dev-dependencies]
1620
shell-words = "1.0.0"

examples/Cargo.toml

+8
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,31 @@ futures-util = "0.3"
1111
once_cell = "1.2.0"
1212

1313
[dependencies.glib]
14+
version = "0.16"
1415
git = "https://github.com/gtk-rs/gtk-rs-core"
16+
branch = "0.16"
1517

1618
[dependencies.gtk]
1719
path = "../gtk"
1820

1921
[dependencies.pangocairo]
22+
version = "0.16"
2023
git = "https://github.com/gtk-rs/gtk-rs-core"
24+
branch = "0.16"
2125
optional = true
2226

2327
[dependencies.cairo]
2428
package = "cairo-rs"
29+
version = "0.16"
2530
git = "https://github.com/gtk-rs/gtk-rs-core"
31+
branch = "0.16"
2632
features = ["png"]
2733
optional = true
2834

2935
[build-dependencies.glib-build-tools]
36+
version = "0.16"
3037
git = "https://github.com/gtk-rs/gtk-rs-core"
38+
branch = "0.16"
3139

3240
[[bin]]
3341
name = "accessibility"

gdk/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ features = ["dox"]
2929
[dependencies]
3030
libc = "0.2"
3131
bitflags = "1.0"
32-
ffi = { package = "gdk-sys", path = "sys" }
33-
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs-core" }
34-
gdk-pixbuf = { git = "https://github.com/gtk-rs/gtk-rs-core" }
35-
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
36-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
37-
pango = { git = "https://github.com/gtk-rs/gtk-rs-core" }
32+
ffi = { package = "gdk-sys", path = "sys", version = "0.16" }
33+
cairo-rs = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
34+
gdk-pixbuf = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
35+
gio = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
36+
glib = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
37+
pango = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
3838

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

gdk/sys/Cargo.toml

+12
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,38 @@ libc = "0.2"
88
[dependencies.cairo]
99
package = "cairo-sys-rs"
1010
git = "https://github.com/gtk-rs/gtk-rs-core"
11+
version = "0.16"
12+
branch = "0.16"
1113

1214
[dependencies.gdk_pixbuf]
1315
package = "gdk-pixbuf-sys"
1416
git = "https://github.com/gtk-rs/gtk-rs-core"
17+
version = "0.16"
18+
branch = "0.16"
1519

1620
[dependencies.gio]
1721
package = "gio-sys"
1822
git = "https://github.com/gtk-rs/gtk-rs-core"
23+
version = "0.16"
24+
branch = "0.16"
1925

2026
[dependencies.glib]
2127
package = "glib-sys"
2228
git = "https://github.com/gtk-rs/gtk-rs-core"
29+
version = "0.16"
30+
branch = "0.16"
2331

2432
[dependencies.gobject]
2533
package = "gobject-sys"
2634
git = "https://github.com/gtk-rs/gtk-rs-core"
35+
version = "0.16"
36+
branch = "0.16"
2737

2838
[dependencies.pango]
2939
package = "pango-sys"
3040
git = "https://github.com/gtk-rs/gtk-rs-core"
41+
version = "0.16"
42+
branch = "0.16"
3143

3244
[dev-dependencies]
3345
shell-words = "1.0.0"

gdkwayland/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ dox = ["ffi/dox", "gdk/dox", "glib/dox"]
2121
features = ["dox"]
2222

2323
[dependencies]
24-
ffi = { path = "./sys", package = "gdkwayland-sys" }
25-
gdk = { path = "../gdk" }
26-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
24+
ffi = { path = "./sys", package = "gdkwayland-sys", version = "0.16" }
25+
gdk = { path = "../gdk", version = "0.16" }
26+
glib = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
2727
libc = "0.2"
2828
wayland-client = { version = "0.29", features = ["use_system_lib"] }
2929

gdkwayland/sys/Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,19 @@ libc = "0.2"
2424
[dependencies.glib]
2525
package = "glib-sys"
2626
git = "https://github.com/gtk-rs/gtk-rs-core"
27+
version = "0.16"
28+
branch = "0.16"
2729

2830
[dependencies.gobject]
2931
package = "gobject-sys"
3032
git = "https://github.com/gtk-rs/gtk-rs-core"
33+
version = "0.16"
34+
branch = "0.16"
3135

3236
[dependencies.gdk]
3337
package = "gdk-sys"
3438
path = "../../gdk/sys"
39+
version = "0.16"
3540

3641
[build-dependencies]
3742
pkg-config = "0.3.7"

gdkx11/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ features = ["dox"]
2626
[dependencies]
2727
libc = "0.2"
2828
x11 = "2.18"
29-
ffi = { package = "gdkx11-sys", path = "sys" }
30-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
31-
gdk = { path = "../gdk" }
32-
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
29+
ffi = { package = "gdkx11-sys", path = "sys", version = "0.16" }
30+
glib = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
31+
gdk = { path = "../gdk", version = "0.16" }
32+
gio = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
3333

3434
[dev-dependencies]
3535
gir-format-check = "^0.1"

gdkx11/sys/Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,20 @@ x11 = "2.18"
3232
[dependencies.gdk]
3333
package = "gdk-sys"
3434
path = "../../gdk/sys"
35+
version = "0.16"
3536

3637
[dependencies.glib]
3738
package = "glib-sys"
3839
git = "https://github.com/gtk-rs/gtk-rs-core"
40+
version = "0.16"
41+
branch = "0.16"
3942

4043
[dependencies.cairo]
4144
package = "cairo-sys-rs"
4245
git = "https://github.com/gtk-rs/gtk-rs-core"
4346
optional = true
47+
version = "0.16"
48+
branch = "0.16"
4449

4550
[build-dependencies]
4651
system-deps = "6"

gtk/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ bitflags = "1.0"
5050
field-offset = "0.3"
5151
futures-channel = "0.3"
5252
once_cell = "1.0"
53-
atk = { path = "../atk" }
54-
ffi = { package = "gtk-sys", path = "sys" }
55-
gtk3-macros = { path = "../gtk3-macros" }
56-
cairo-rs = { git = "https://github.com/gtk-rs/gtk-rs-core" }
57-
gio = { git = "https://github.com/gtk-rs/gtk-rs-core" }
58-
glib = { git = "https://github.com/gtk-rs/gtk-rs-core" }
59-
gdk = { path = "../gdk" }
60-
gdk-pixbuf = { git = "https://github.com/gtk-rs/gtk-rs-core" }
61-
pango = { git = "https://github.com/gtk-rs/gtk-rs-core" }
53+
atk = { path = "../atk", version = "0.16" }
54+
ffi = { package = "gtk-sys", path = "sys", version = "0.16" }
55+
gtk3-macros = { path = "../gtk3-macros", version = "0.16" }
56+
cairo-rs = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
57+
gio = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
58+
glib = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
59+
gdk = { path = "../gdk", version = "0.16" }
60+
gdk-pixbuf = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
61+
pango = { version = "0.16", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.16" }
6262

6363
[dev-dependencies]
6464
gir-format-check = "^0.1"

gtk/sys/Cargo.toml

+14
Original file line numberDiff line numberDiff line change
@@ -44,34 +44,48 @@ libc = "0.2"
4444
[dependencies.glib]
4545
package = "glib-sys"
4646
git = "https://github.com/gtk-rs/gtk-rs-core"
47+
version = "0.16"
48+
branch = "0.16"
4749

4850
[dependencies.gobject]
4951
package = "gobject-sys"
5052
git = "https://github.com/gtk-rs/gtk-rs-core"
53+
version = "0.16"
54+
branch = "0.16"
5155

5256
[dependencies.gio]
5357
package = "gio-sys"
5458
git = "https://github.com/gtk-rs/gtk-rs-core"
59+
version = "0.16"
60+
branch = "0.16"
5561

5662
[dependencies.atk]
5763
package = "atk-sys"
5864
path = "../../atk/sys"
65+
version = "0.16"
5966

6067
[dependencies.gdk_pixbuf]
6168
package = "gdk-pixbuf-sys"
6269
git = "https://github.com/gtk-rs/gtk-rs-core"
70+
version = "0.16"
71+
branch = "0.16"
6372

6473
[dependencies.gdk]
6574
package = "gdk-sys"
6675
path = "../../gdk/sys"
76+
version = "0.16"
6777

6878
[dependencies.pango]
6979
package = "pango-sys"
7080
git = "https://github.com/gtk-rs/gtk-rs-core"
81+
version = "0.16"
82+
branch = "0.16"
7183

7284
[dependencies.cairo]
7385
package = "cairo-sys-rs"
7486
git = "https://github.com/gtk-rs/gtk-rs-core"
87+
version = "0.16"
88+
branch = "0.16"
7589

7690
[build-dependencies]
7791
system-deps = "6"

gtk3-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ syn = { version = "1.0", default-features = false, features = ["full"] }
2828
proc-macro-crate = "1.0"
2929

3030
[dev-dependencies]
31-
gtk = { path = "../gtk" }
31+
gtk = { path = "../gtk", version = "0.16" }

0 commit comments

Comments
 (0)