Skip to content

Commit 979cedd

Browse files
prepare for 0.3 release
1 parent 5ac8a5e commit 979cedd

File tree

10 files changed

+55
-51
lines changed

10 files changed

+55
-51
lines changed

gdk4-wayland/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ dox = ["ffi/dox", "khronos-egl", "xkb"]
1919
features = ["dox"]
2020

2121
[dependencies]
22-
ffi = {path = "./sys", package = "gdk4-wayland-sys"}
23-
gdk = {path = "../gdk4", package = "gdk4"}
24-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
25-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
22+
ffi = {path = "./sys", package = "gdk4-wayland-sys", version = "0.3"}
23+
gdk = {path = "../gdk4", package = "gdk4", version = "0.3"}
24+
gio = {version = "0.14", features = ["v2_66"]}
25+
glib = {version = "0.14", features = ["v2_66"]}
2626
libc = "0.2"
2727
wayland-client = {version = "0.28", features = ["use_system_lib"]}
2828
khronos-egl = {version = "4.1.0", optional = true}

gdk4-wayland/sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ version = "0.7"
3434
optional = true
3535

3636
[dependencies.glib-sys]
37-
git = "https://github.com/gtk-rs/gtk-rs-core.git"
37+
version = "0.14"
3838

3939
[build-dependencies]
4040
system-deps = "4"

gdk4-x11/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ dox = ["ffi/dox", "khronos-egl"]
1919
features = ["dox"]
2020

2121
[dependencies]
22-
ffi = {path = "./sys", package = "gdk4-x11-sys"}
23-
gdk = {path = "../gdk4", package = "gdk4"}
24-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
25-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
22+
ffi = {path = "./sys", package = "gdk4-x11-sys", version = "0.3"}
23+
gdk = {path = "../gdk4", package = "gdk4", version = "0.3"}
24+
gio = {version = "0.14", features = ["v2_66"]}
25+
glib = {version = "0.14", features = ["v2_66"]}
2626
libc = "0.2"
2727
x11 = "2.18"
2828
khronos-egl = {version = "4.1.0", optional = true}

gdk4-x11/sys/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ x11 = "2.18"
3232

3333
[dependencies.gdk4-sys]
3434
path = "../../gdk4/sys"
35+
version = "0.3"
3536

3637
[dependencies.glib-sys]
37-
git = "https://github.com/gtk-rs/gtk-rs-core.git"
38+
version = "0.14"
3839

3940
[build-dependencies]
4041
system-deps = "4"

gdk4/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ features = ["dox"]
2424

2525
[dependencies]
2626
bitflags = "1.0"
27-
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core"}
28-
ffi = {package = "gdk4-sys", path = "./sys"}
29-
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core"}
30-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
31-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
27+
cairo-rs = {version = "0.14"}
28+
ffi = {package = "gdk4-sys", path = "./sys", version = "0.3"}
29+
gdk-pixbuf = {version = "0.14"}
30+
gio = {version = "0.14", features = ["v2_66"]}
31+
glib = {version = "0.14", features = ["v2_66"]}
3232
libc = "0.2"
33-
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v1_46"]}
33+
pango = {version = "0.14", features = ["v1_46"]}
3434

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

gdk4/sys/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,25 +34,25 @@ v4_4 = ["v4_2"]
3434
libc = "0.2"
3535

3636
[dependencies.cairo-sys-rs]
37-
git = "https://github.com/gtk-rs/gtk-rs-core"
37+
version = "0.14"
3838

3939
[dependencies.gdk-pixbuf-sys]
40-
git = "https://github.com/gtk-rs/gtk-rs-core"
40+
version = "0.14"
4141

4242
[dependencies.gio-sys]
43-
git = "https://github.com/gtk-rs/gtk-rs-core"
43+
version = "0.14"
4444

4545
[dependencies.glib-sys]
46-
git = "https://github.com/gtk-rs/gtk-rs-core"
46+
version = "0.14"
4747

4848
[dependencies.gobject-sys]
49-
git = "https://github.com/gtk-rs/gtk-rs-core"
49+
version = "0.14"
5050

5151
[dependencies.graphene-sys]
52-
git = "https://github.com/gtk-rs/gtk-rs-core"
52+
version = "0.14"
5353

5454
[dependencies.pango-sys]
55-
git = "https://github.com/gtk-rs/gtk-rs-core"
55+
version = "0.14"
5656

5757
[build-dependencies]
5858
system-deps = "4"

gsk4/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ features = ["dox"]
2424

2525
[dependencies]
2626
bitflags = "1.0"
27-
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core"}
28-
ffi = {package = "gsk4-sys", path = "./sys"}
29-
gdk = {package = "gdk4", path = "../gdk4"}
30-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
31-
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core"}
27+
cairo-rs = {version = "0.14"}
28+
ffi = {package = "gsk4-sys", path = "./sys", version = "0.3"}
29+
gdk = {package = "gdk4", path = "../gdk4", version = "0.3"}
30+
glib = {version = "0.14", features = ["v2_66"]}
31+
graphene = {package = "graphene-rs", version = "0.14"}
3232
libc = "0.2"
33-
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v1_46"]}
33+
pango = {version = "0.14", features = ["v1_46"]}
3434

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

gsk4/sys/Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,23 @@ v4_2 = []
3030
libc = "0.2"
3131

3232
[dependencies.cairo-sys-rs]
33-
git = "https://github.com/gtk-rs/gtk-rs-core"
33+
version = "0.14"
3434

3535
[dependencies.gdk4-sys]
3636
path = "../../gdk4/sys"
37+
version = "0.3"
3738

3839
[dependencies.glib-sys]
39-
git = "https://github.com/gtk-rs/gtk-rs-core"
40+
version = "0.14"
4041

4142
[dependencies.gobject-sys]
42-
git = "https://github.com/gtk-rs/gtk-rs-core"
43+
version = "0.14"
4344

4445
[dependencies.graphene-sys]
45-
git = "https://github.com/gtk-rs/gtk-rs-core"
46+
version = "0.14"
4647

4748
[dependencies.pango-sys]
48-
git = "https://github.com/gtk-rs/gtk-rs-core"
49+
version = "0.14"
4950

5051
[build-dependencies]
5152
system-deps = "4"

gtk4/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@ features = ["dox"]
2525

2626
[dependencies]
2727
bitflags = "1.0"
28-
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core"}
29-
ffi = {package = "gtk4-sys", path = "./sys"}
28+
cairo-rs = {version = "0.14"}
29+
ffi = {package = "gtk4-sys", path = "./sys", version = "0.3"}
3030
field-offset = "0.3"
3131
futures-channel = "0.3"
32-
gdk = {package = "gdk4", path = "../gdk4"}
33-
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core"}
34-
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
35-
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
36-
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core"}
37-
gsk = {package = "gsk4", path = "../gsk4"}
38-
gtk4-macros = {path = "../gtk4-macros"}
32+
gdk = {package = "gdk4", path = "../gdk4", version = "0.3"}
33+
gdk-pixbuf = {version = "0.14"}
34+
gio = {version = "0.14", features = ["v2_66"]}
35+
glib = {version = "0.14", features = ["v2_66"]}
36+
graphene = {package = "graphene-rs", version = "0.14"}
37+
gsk = {package = "gsk4", path = "../gsk4", version = "0.3"}
38+
gtk4-macros = {path = "../gtk4-macros", version= "0.3"}
3939
libc = "0.2"
4040
once_cell = "1.0"
41-
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v1_46"]}
41+
pango = {version = "0.14", features = ["v1_46"]}
4242

4343
[dev-dependencies]
4444
gir-format-check = "^0.1"

gtk4/sys/Cargo.toml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,31 +35,33 @@ v4_4 = ["v4_2"]
3535
libc = "0.2"
3636

3737
[dependencies.cairo-sys-rs]
38-
git = "https://github.com/gtk-rs/gtk-rs-core"
38+
version = "0.14"
3939

4040
[dependencies.gdk-pixbuf-sys]
41-
git = "https://github.com/gtk-rs/gtk-rs-core"
41+
version = "0.14"
4242

4343
[dependencies.gdk4-sys]
4444
path = "../../gdk4/sys"
45+
version = "0.3"
4546

4647
[dependencies.gio-sys]
47-
git = "https://github.com/gtk-rs/gtk-rs-core"
48+
version = "0.14"
4849

4950
[dependencies.glib-sys]
50-
git = "https://github.com/gtk-rs/gtk-rs-core"
51+
version = "0.14"
5152

5253
[dependencies.gobject-sys]
53-
git = "https://github.com/gtk-rs/gtk-rs-core"
54+
version = "0.14"
5455

5556
[dependencies.graphene-sys]
56-
git = "https://github.com/gtk-rs/gtk-rs-core"
57+
version = "0.14"
5758

5859
[dependencies.gsk4-sys]
5960
path = "../../gsk4/sys"
61+
version = "0.3"
6062

6163
[dependencies.pango-sys]
62-
git = "https://github.com/gtk-rs/gtk-rs-core"
64+
version = "0.14"
6365

6466
[build-dependencies]
6567
system-deps = "4"

0 commit comments

Comments
 (0)