Skip to content

Commit 0f4968a

Browse files
Bump release to 0.4.8
1 parent ac6d377 commit 0f4968a

File tree

11 files changed

+27
-27
lines changed

11 files changed

+27
-27
lines changed

gdk4-wayland/Cargo.toml

Lines changed: 3 additions & 3 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.7"
12+
version = "0.4.8"
1313
rust-version = "1.56"
1414

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

2525
[dependencies]
26-
ffi = {path = "./sys", package = "gdk4-wayland-sys", version = "0.4.2"}
27-
gdk = {path = "../gdk4", package = "gdk4", version = "0.4.2"}
26+
ffi = {path = "./sys", package = "gdk4-wayland-sys", version = "0.4.8"}
27+
gdk = {path = "../gdk4", package = "gdk4", version = "0.4.8"}
2828
gio = {version = "0.15.2", features = ["v2_66"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
2929
glib = {version = "0.15.2", features = ["v2_66"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
3030
libc = "0.2"

gdk4-wayland/sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.7"
12+
version = "0.4.8"
1313
rust-version = "1.56"
1414
[package.metadata.system-deps.gtk4_wayland]
1515
name = "gtk4-wayland"

gdk4-x11/Cargo.toml

Lines changed: 3 additions & 3 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.7"
12+
version = "0.4.8"
1313
rust-version = "1.56"
1414

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

2424
[dependencies]
25-
ffi = {path = "./sys", package = "gdk4-x11-sys", version = "0.4.2"}
26-
gdk = {path = "../gdk4", package = "gdk4", version = "0.4.2"}
25+
ffi = {path = "./sys", package = "gdk4-x11-sys", version = "0.4.8"}
26+
gdk = {path = "../gdk4", package = "gdk4", version = "0.4.8"}
2727
gio = {features = ["v2_66"], version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
2828
glib = {features = ["v2_66"], version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
2929
libc = "0.2"

gdk4-x11/sys/Cargo.toml

Lines changed: 2 additions & 2 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.7"
12+
version = "0.4.8"
1313
rust-version = "1.56"
1414
[package.metadata.system-deps.gtk4_x11]
1515
name = "gtk4-x11"
@@ -33,7 +33,7 @@ libc = "0.2"
3333
[dependencies.gdk]
3434
package = "gdk4-sys"
3535
path = "../../gdk4/sys"
36-
version = "0.4.2"
36+
version = "0.4.8"
3737

3838
[dependencies.glib]
3939
package = "glib-sys"

gdk4/Cargo.toml

Lines changed: 2 additions & 2 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.7"
12+
version = "0.4.8"
1313
rust-version = "1.56"
1414

1515
[lib]
@@ -28,7 +28,7 @@ features = ["dox"]
2828
[dependencies]
2929
bitflags = "1.0"
3030
cairo-rs = {version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
31-
ffi = {package = "gdk4-sys", path = "./sys", version = "0.4.2"}
31+
ffi = {package = "gdk4-sys", path = "./sys", version = "0.4.8"}
3232
gdk-pixbuf = {version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
3333
gio = {version = "0.15.2", features = ["v2_66"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
3434
glib = {version = "0.15.3", features = ["v2_66"], git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}

gdk4/sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.7"
12+
version = "0.4.8"
1313
rust-version = "1.56"
1414
[package.metadata.docs.rs]
1515
features = ["dox"]

gsk4/Cargo.toml

Lines changed: 3 additions & 3 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.7"
12+
version = "0.4.8"
1313
rust-version = "1.56"
1414

1515
[lib]
@@ -28,8 +28,8 @@ features = ["dox"]
2828
[dependencies]
2929
bitflags = "1.0"
3030
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.2"}
32-
gdk = {package = "gdk4", path = "../gdk4", version = "0.4.2"}
31+
ffi = {package = "gsk4-sys", path = "./sys", version = "0.4.8"}
32+
gdk = {package = "gdk4", path = "../gdk4", version = "0.4.8"}
3333
glib = {features = ["v2_66"], version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
3434
graphene = {package = "graphene-rs", version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
3535
libc = "0.2"

gsk4/sys/Cargo.toml

Lines changed: 2 additions & 2 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.7"
12+
version = "0.4.8"
1313
rust-version = "1.56"
1414
[package.metadata.docs.rs]
1515
features = ["dox"]
@@ -47,7 +47,7 @@ branch = "0.15"
4747
[dependencies.gdk]
4848
package = "gdk4-sys"
4949
path = "../../gdk4/sys"
50-
version = "0.4.2"
50+
version = "0.4.8"
5151

5252
[dependencies.glib]
5353
package = "glib-sys"

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.7"
12+
version = "0.4.8"
1313
rust-version = "1.56"
1414

1515
[lib]
@@ -27,5 +27,5 @@ syn = {version = "1.0", default-features = false, features = ["full"]}
2727
[dev-dependencies]
2828
futures-channel = "0.3"
2929
futures-util = "0.3"
30-
gtk = { path = "../gtk4", package = "gtk4", version = "0.4.2" }
30+
gtk = { path = "../gtk4", package = "gtk4", version = "0.4.8" }
3131
trybuild2 = "1.0"

gtk4/Cargo.toml

Lines changed: 5 additions & 5 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.7"
13+
version = "0.4.8"
1414
rust-version = "1.56"
1515

1616
[lib]
@@ -29,16 +29,16 @@ features = ["dox"]
2929
[dependencies]
3030
bitflags = "1.0"
3131
cairo-rs = {version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
32-
ffi = {package = "gtk4-sys", path = "./sys", version = "0.4.2"}
32+
ffi = {package = "gtk4-sys", path = "./sys", version = "0.4.8"}
3333
field-offset = "0.3"
3434
futures-channel = "0.3"
35-
gdk = {package = "gdk4", path = "../gdk4", version = "0.4.2"}
35+
gdk = {package = "gdk4", path = "../gdk4", version = "0.4.8"}
3636
gdk-pixbuf = {version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15" }
3737
gio = {features = ["v2_66"], version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
3838
glib = {features = ["v2_66"], version = "0.15.3", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
3939
graphene = {package = "graphene-rs", version = "0.15.1", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}
40-
gsk = {package = "gsk4", path = "../gsk4", version = "0.4.2"}
41-
gtk4-macros = {path = "../gtk4-macros", version = "0.4.2"}
40+
gsk = {package = "gsk4", path = "../gsk4", version = "0.4.8"}
41+
gtk4-macros = {path = "../gtk4-macros", version = "0.4.8"}
4242
libc = "0.2"
4343
once_cell = "1.0"
4444
pango = {features = ["v1_46"], version = "0.15.2", git = "https://github.com/gtk-rs/gtk-rs-core", branch = "0.15"}

0 commit comments

Comments
 (0)