1
1
Fork 0
mirror of https://github.com/griffi-gh/hUI.git synced 2025-04-11 10:17:21 -05:00

bump version to alpha.7 (pre-release)

This commit is contained in:
griffi-gh 2025-03-11 13:40:54 +01:00
parent e43998419a
commit 0f56de482c
7 changed files with 14 additions and 14 deletions
hui-derive
hui-glium
hui-painter
hui-shared
hui-wgpu
hui-winit
hui

View file

@ -5,7 +5,7 @@ repository = "https://github.com/griffi-gh/hui"
readme = "../README.md"
authors = ["griffi-gh <prasol258@gmail.com>"]
rust-version = "1.85"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2024"
license = "GPL-3.0-or-later"
publish = true

View file

@ -4,7 +4,7 @@ description = "glium render backend for `hui`"
repository = "https://github.com/griffi-gh/hui"
readme = "../README.md"
authors = ["griffi-gh <prasol258@gmail.com>"]
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
rust-version = "1.85"
edition = "2024"
license = "GPL-3.0-or-later"
@ -16,7 +16,7 @@ include = [
]
[dependencies]
hui-painter = { version = "=0.1.0-alpha.6", path = "../hui-painter", default-features = false }
hui-painter = { version = "=0.1.0-alpha.7", path = "../hui-painter", default-features = false }
glium = { version = "0.36", default-features = false }
glam = "0.30"
log = "0.4"

View file

@ -5,7 +5,7 @@ repository = "https://github.com/griffi-gh/hui"
readme = "../README.md"
authors = ["griffi-gh <prasol258@gmail.com>"]
rust-version = "1.85"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2024"
license = "GPL-3.0-or-later"
publish = true
@ -16,7 +16,7 @@ include = [
]
[dependencies]
hui-shared = { version = "0.1.0-alpha.6", path = "../hui-shared" }
hui-shared = { version = "0.1.0-alpha.7", path = "../hui-shared" }
glam = "0.30"
log = "0.4"
rect_packer = "0.2" # TODO: use sth else like `crunch` instead?

View file

@ -4,7 +4,7 @@ description = "internal crate"
repository = "https://github.com/griffi-gh/hui"
readme = "../README.md"
authors = ["griffi-gh <prasol258@gmail.com>"]
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2024"
license = "GPL-3.0-or-later"
publish = true

View file

@ -4,7 +4,7 @@ description = "wgpu render backend for `hui`"
repository = "https://github.com/griffi-gh/hui"
readme = "../README.md"
authors = ["griffi-gh <prasol258@gmail.com>"]
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
rust-version = "1.85"
edition = "2024"
license = "GPL-3.0-or-later"
@ -16,7 +16,7 @@ include = [
]
[dependencies]
hui-painter = { version = "=0.1.0-alpha.6", path = "../hui-painter", default-features = false }
hui-painter = { version = "=0.1.0-alpha.7", path = "../hui-painter", default-features = false }
wgpu = { version = "24", default-features = false, features = ["wgsl"]}
bytemuck = "1.15"
log = "0.4"

View file

@ -4,7 +4,7 @@ description = "winit platform backend for `hui`"
repository = "https://github.com/griffi-gh/hui"
readme = "../README.md"
authors = ["griffi-gh <prasol258@gmail.com>"]
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2024"
license = "GPL-3.0-or-later"
publish = true
@ -14,7 +14,7 @@ include = [
]
[dependencies]
hui = { version = "=0.1.0-alpha.6", path = "../hui", default-features = false }
hui = { version = "=0.1.0-alpha.7", path = "../hui", default-features = false }
winit = { version = "0.30", default-features = false, features = ["x11"]}
# winit_30 = { package = "winit", version = "0.30", default-features = false, optional = true }
# winit_29 = { package = "winit", version = "0.29", default-features = false, optional = true }

View file

@ -5,7 +5,7 @@ repository = "https://github.com/griffi-gh/hui"
readme = "../README.md"
authors = ["griffi-gh <prasol258@gmail.com>"]
rust-version = "1.85"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2024"
license = "GPL-3.0-or-later"
publish = true
@ -15,9 +15,9 @@ include = [
]
[dependencies]
hui-derive = { version = "0.1.0-alpha.6", path = "../hui-derive", optional = true }
hui-shared = { version = "0.1.0-alpha.6", path = "../hui-shared" }
hui-painter = { version = "0.1.0-alpha.6", path = "../hui-painter" }
hui-derive = { version = "0.1.0-alpha.7", path = "../hui-derive", optional = true }
hui-shared = { version = "0.1.0-alpha.7", path = "../hui-shared" }
hui-painter = { version = "0.1.0-alpha.7", path = "../hui-painter" }
hashbrown = "0.15"
nohash-hasher = "0.2"
glam = "0.30"