Skip to content

Commit bcee198

Browse files
bump to 0.4.2
1 parent f4fdfef commit bcee198

File tree

11 files changed

+66
-66
lines changed

11 files changed

+66
-66
lines changed

gdk4-wayland/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "gdk4-wayland"
1010
readme = "README.md"
1111
repository = "https://github.com/gtk-rs/gtk4-rs"
12-
version = "0.4.1"
12+
version = "0.4.2"
1313
rust-version = "1.56"
1414

1515
[features]
@@ -23,10 +23,10 @@ xkb_crate = ["xkb"]
2323
features = ["dox"]
2424

2525
[dependencies]
26-
ffi = {path = "./sys", package = "gdk4-wayland-sys", version = "0.4.1"}
27-
gdk = {path = "../gdk4", package = "gdk4", version = "0.4.1"}
28-
gio = {version = "0.15.1", features = ["v2_66"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
29-
glib = {version = "0.15.1", features = ["v2_66"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
26+
ffi = {path = "./sys", package = "gdk4-wayland-sys", version = "0.4.2"}
27+
gdk = {path = "../gdk4", package = "gdk4", version = "0.4.2"}
28+
gio = {version = "0.15.2", features = ["v2_66"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
29+
glib = {version = "0.15.2", features = ["v2_66"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
3030
libc = "0.2"
3131
wayland-client = {version = "0.29", features = ["use_system_lib"], optional = true}
3232
khronos-egl = {version = "4.1.0", optional = true}

gdk4-wayland/sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["gdk4", "gdk4-wayland", "ffi", "gtk-rs", "gnome"]
99
license = "MIT"
1010
name = "gdk4-wayland-sys"
1111
repository = "https://github.com/gtk-rs/gtk4-rs"
12-
version = "0.4.1"
12+
version = "0.4.2"
1313
rust-version = "1.56"
1414
[package.metadata.system-deps.gtk4_wayland]
1515
name = "gtk4-wayland"
@@ -32,7 +32,7 @@ libc = "0.2"
3232

3333
[dependencies.glib]
3434
package = "glib-sys"
35-
version = "0.15.1"
35+
version = "0.15.2"
3636
git = "https://github.com/gtk-rs/gtk-rs-core"
3737
branch = "0.15"
3838

gdk4-x11/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "gdk4-x11"
1010
readme = "README.md"
1111
repository = "https://github.com/gtk-rs/gtk4-rs"
12-
version = "0.4.1"
12+
version = "0.4.2"
1313
rust-version = "1.56"
1414

1515
[features]
@@ -22,10 +22,10 @@ xlib = ["x11"]
2222
features = ["dox"]
2323

2424
[dependencies]
25-
ffi = {path = "./sys", package = "gdk4-x11-sys", version = "0.4.1"}
26-
gdk = {path = "../gdk4", package = "gdk4", version = "0.4.1"}
27-
gio = {features = ["v2_66"], version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
28-
glib = {features = ["v2_66"], version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
25+
ffi = {path = "./sys", package = "gdk4-x11-sys", version = "0.4.2"}
26+
gdk = {path = "../gdk4", package = "gdk4", version = "0.4.2"}
27+
gio = {features = ["v2_66"], version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
28+
glib = {features = ["v2_66"], version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
2929
libc = "0.2"
3030
x11 = {version = "2.18", optional = true }
3131
khronos-egl = {version = "4.1.0", optional = true}

gdk4-x11/sys/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["gdk4", "gdk4-x11", "ffi", "gtk-rs", "gnome"]
99
license = "MIT"
1010
name = "gdk4-x11-sys"
1111
repository = "https://github.com/gtk-rs/gtk4-rs"
12-
version = "0.4.1"
12+
version = "0.4.2"
1313
rust-version = "1.56"
1414
[package.metadata.system-deps.gtk4_x11]
1515
name = "gtk4-x11"
@@ -33,11 +33,11 @@ libc = "0.2"
3333
[dependencies.gdk]
3434
package = "gdk4-sys"
3535
path = "../../gdk4/sys"
36-
version = "0.4.1"
36+
version = "0.4.2"
3737

3838
[dependencies.glib]
3939
package = "glib-sys"
40-
version = "0.15.1"
40+
version = "0.15.2"
4141
git = "https://github.com/gtk-rs/gtk-rs-core"
4242
branch = "0.15"
4343

gdk4/Cargo.toml

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

1515
[lib]
@@ -26,13 +26,13 @@ features = ["dox"]
2626

2727
[dependencies]
2828
bitflags = "1.0"
29-
cairo-rs = {version ="0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
30-
ffi = {package = "gdk4-sys", path = "./sys", version = "0.4.1"}
31-
gdk-pixbuf = {version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
32-
gio = {version = "0.15.1", features = ["v2_66"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
33-
glib = {version = "0.15.1", features = ["v2_66"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
29+
cairo-rs = {version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
30+
ffi = {package = "gdk4-sys", path = "./sys", version = "0.4.2"}
31+
gdk-pixbuf = {version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
32+
gio = {version = "0.15.2", features = ["v2_66"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
33+
glib = {version = "0.15.2", features = ["v2_66"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
3434
libc = "0.2"
35-
pango = {version = "0.15.1", features = ["v1_46"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
35+
pango = {version = "0.15.2", features = ["v1_46"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
3636

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

gdk4/sys/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["gdk", "gdk4", "ffi", "gtk-rs", "gnome"]
99
license = "MIT"
1010
name = "gdk4-sys"
1111
repository = "https://github.com/gtk-rs/gtk4-rs"
12-
version = "0.4.1"
12+
version = "0.4.2"
1313
rust-version = "1.56"
1414
[package.metadata.docs.rs]
1515
features = ["dox"]
@@ -40,37 +40,37 @@ libc = "0.2"
4040

4141
[dependencies.cairo]
4242
package = "cairo-sys-rs"
43-
version = "0.15.1"
43+
version = "0.15.2"
4444
git = "https://github.com/gtk-rs/gtk-rs-core"
4545
branch = "0.15"
4646

4747
[dependencies.gdk-pixbuf]
4848
package = "gdk-pixbuf-sys"
49-
version = "0.15.1"
49+
version = "0.15.2"
5050
git = "https://github.com/gtk-rs/gtk-rs-core"
5151
branch = "0.15"
5252

5353
[dependencies.gio]
5454
package = "gio-sys"
55-
version = "0.15.1"
55+
version = "0.15.2"
5656
git = "https://github.com/gtk-rs/gtk-rs-core"
5757
branch = "0.15"
5858

5959
[dependencies.glib]
6060
package = "glib-sys"
61-
version = "0.15.1"
61+
version = "0.15.2"
6262
git = "https://github.com/gtk-rs/gtk-rs-core"
6363
branch = "0.15"
6464

6565
[dependencies.gobject]
6666
package = "gobject-sys"
67-
version = "0.15.1"
67+
version = "0.15.2"
6868
git = "https://github.com/gtk-rs/gtk-rs-core"
6969
branch = "0.15"
7070

7171
[dependencies.pango]
7272
package = "pango-sys"
73-
version = "0.15.1"
73+
version = "0.15.2"
7474
git = "https://github.com/gtk-rs/gtk-rs-core"
7575
branch = "0.15"
7676

gsk4/Cargo.toml

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

1515
[lib]
@@ -27,13 +27,13 @@ features = ["dox"]
2727

2828
[dependencies]
2929
bitflags = "1.0"
30-
cairo-rs = {version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
31-
ffi = {package = "gsk4-sys", path = "./sys", version = "0.4.1"}
32-
gdk = {package = "gdk4", path = "../gdk4", version = "0.4.1"}
33-
glib = {features = ["v2_66"], version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
34-
graphene = {package = "graphene-rs", version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
30+
cairo-rs = {version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
31+
ffi = {package = "gsk4-sys", path = "./sys", version = "0.4.2"}
32+
gdk = {package = "gdk4", path = "../gdk4", version = "0.4.2"}
33+
glib = {features = ["v2_66"], version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
34+
graphene = {package = "graphene-rs", version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
3535
libc = "0.2"
36-
pango = {features = ["v1_46"], version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
36+
pango = {features = ["v1_46"], version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
3737

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

gsk4/sys/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["gsk", "ffi", "gtk-rs", "gnome"]
99
license = "MIT"
1010
name = "gsk4-sys"
1111
repository = "https://github.com/gtk-rs/gtk4-rs"
12-
version = "0.4.1"
12+
version = "0.4.2"
1313
rust-version = "1.56"
1414
[package.metadata.docs.rs]
1515
features = ["dox"]
@@ -40,36 +40,36 @@ libc = "0.2"
4040

4141
[dependencies.cairo]
4242
package = "cairo-sys-rs"
43-
version = "0.15.1"
43+
version = "0.15.2"
4444
git = "https://github.com/gtk-rs/gtk-rs-core"
4545
branch = "0.15"
4646

4747
[dependencies.gdk]
4848
package = "gdk4-sys"
4949
path = "../../gdk4/sys"
50-
version = "0.4.1"
50+
version = "0.4.2"
5151

5252
[dependencies.glib]
5353
package = "glib-sys"
54-
version = "0.15.1"
54+
version = "0.15.2"
5555
git = "https://github.com/gtk-rs/gtk-rs-core"
5656
branch = "0.15"
5757

5858
[dependencies.gobject]
5959
package = "gobject-sys"
60-
version = "0.15.1"
60+
version = "0.15.2"
6161
git = "https://github.com/gtk-rs/gtk-rs-core"
6262
branch = "0.15"
6363

6464
[dependencies.graphene]
6565
package = "graphene-sys"
66-
version = "0.15.1"
66+
version = "0.15.2"
6767
git = "https://github.com/gtk-rs/gtk-rs-core"
6868
branch = "0.15"
6969

7070
[dependencies.pango]
7171
package = "pango-sys"
72-
version = "0.15.1"
72+
version = "0.15.2"
7373
git = "https://github.com/gtk-rs/gtk-rs-core"
7474
branch = "0.15"
7575

gtk4-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["gtk", "gtk4", "gtk-rs", "gnome", "GUI"]
99
license = "MIT"
1010
name = "gtk4-macros"
1111
repository = "https://github.com/gtk-rs/gtk4-rs"
12-
version = "0.4.1"
12+
version = "0.4.2"
1313
rust-version = "1.56"
1414

1515
[lib]
@@ -24,4 +24,4 @@ quote = "1.0"
2424
syn = {version = "1.0", default-features = false, features = ["full"]}
2525

2626
[dev-dependencies]
27-
gtk = { path = "../gtk4", package = "gtk4", version = "0.4.1" }
27+
gtk = { path = "../gtk4", package = "gtk4", version = "0.4.2" }

gtk4/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "MIT"
1010
name = "gtk4"
1111
readme = "README.md"
1212
repository = "https://github.com/gtk-rs/gtk4-rs"
13-
version = "0.4.1"
13+
version = "0.4.2"
1414
rust-version = "1.56"
1515

1616
[lib]
@@ -27,20 +27,20 @@ features = ["dox"]
2727

2828
[dependencies]
2929
bitflags = "1.0"
30-
cairo-rs = {version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
31-
ffi = {package = "gtk4-sys", path = "./sys", version = "0.4.1"}
30+
cairo-rs = {version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
31+
ffi = {package = "gtk4-sys", path = "./sys", version = "0.4.2"}
3232
field-offset = "0.3"
3333
futures-channel = "0.3"
34-
gdk = {package = "gdk4", path = "../gdk4", version = "0.4.1"}
35-
gdk-pixbuf = {version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
36-
gio = {features = ["v2_66"], version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
37-
glib = {features = ["v2_66"], version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
38-
graphene = {package = "graphene-rs", version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
39-
gsk = {package = "gsk4", path = "../gsk4", version = "0.4.1"}
40-
gtk4-macros = {path = "../gtk4-macros", version = "0.4.1"}
34+
gdk = {package = "gdk4", path = "../gdk4", version = "0.4.2"}
35+
gdk-pixbuf = {version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
36+
gio = {features = ["v2_66"], version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
37+
glib = {features = ["v2_66"], version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
38+
graphene = {package = "graphene-rs", version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
39+
gsk = {package = "gsk4", path = "../gsk4", version = "0.4.2"}
40+
gtk4-macros = {path = "../gtk4-macros", version = "0.4.2"}
4141
libc = "0.2"
4242
once_cell = "1.0"
43-
pango = {features = ["v1_46"], version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
43+
pango = {features = ["v1_46"], version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
4444

4545
[dev-dependencies]
4646
futures-executor = "0.3"

0 commit comments

Comments
 (0)