Skip to content

Commit

Permalink
Update version numbers to 0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy committed Dec 11, 2023
1 parent 515ca7c commit ee11395
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 28 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas"
version = "0.14.0-alpha"
version = "0.14.1"
authors = ["Diggory Hardy <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down Expand Up @@ -118,14 +118,14 @@ x11 = ["kas-core/x11"]
unsafe_node = ["kas-core/unsafe_node"]

[dependencies]
kas-core = { version = "0.14.0-alpha", path = "crates/kas-core" }
kas-dylib = { version = "0.14.0-alpha", path = "crates/kas-dylib", optional = true }
kas-widgets = { version = "0.14.0-alpha", path = "crates/kas-widgets" }
kas-view = { version = "0.14.0-alpha", path = "crates/kas-view", optional = true }
kas-resvg = { version = "0.14.0-alpha", path = "crates/kas-resvg", optional = true }
kas-core = { version = "0.14.1", path = "crates/kas-core" }
kas-dylib = { version = "0.14.1", path = "crates/kas-dylib", optional = true }
kas-widgets = { version = "0.14.1", path = "crates/kas-widgets" }
kas-view = { version = "0.14.1", path = "crates/kas-view", optional = true }
kas-resvg = { version = "0.14.1", path = "crates/kas-resvg", optional = true }

[dependencies.kas-wgpu]
version = "0.14.0-alpha"
version = "0.14.1"
path = "crates/kas-wgpu"
optional = true
default-features = false
Expand Down
4 changes: 2 additions & 2 deletions crates/kas-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas-core"
version = "0.14.0-alpha"
version = "0.14.1"
authors = ["Diggory Hardy <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down Expand Up @@ -109,7 +109,7 @@ arboard = { version = "3.2.0", optional = true, default-features = false }


[dependencies.kas-macros]
version = "0.14.0-alpha"
version = "0.14.1"
path = "../kas-macros"

[dependencies.kas-text]
Expand Down
10 changes: 5 additions & 5 deletions crates/kas-dylib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas-dylib"
version = "0.14.0-alpha"
version = "0.14.1"
authors = ["Diggory Hardy <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -20,7 +20,7 @@ raster = ["kas-wgpu/raster"]
resvg = ["dep:kas-resvg"]

[dependencies]
kas-core = { version = "0.14.0-alpha", path = "../kas-core" }
kas-widgets = { version = "0.14.0-alpha", path = "../kas-widgets" }
kas-resvg = { version = "0.14.0-alpha", path = "../kas-resvg", optional = true }
kas-wgpu = { version = "0.14.0-alpha", path = "../kas-wgpu", default-features = false }
kas-core = { version = "0.14.1", path = "../kas-core" }
kas-widgets = { version = "0.14.1", path = "../kas-widgets" }
kas-resvg = { version = "0.14.1", path = "../kas-resvg", optional = true }
kas-wgpu = { version = "0.14.1", path = "../kas-wgpu", default-features = false }
2 changes: 1 addition & 1 deletion crates/kas-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas-macros"
version = "0.14.0-alpha"
version = "0.14.1"
authors = ["Diggory Hardy <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/kas-resvg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas-resvg"
version = "0.14.0-alpha"
version = "0.14.1"
authors = ["Diggory Hardy <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down Expand Up @@ -31,7 +31,7 @@ thiserror = "1.0.23"

[dependencies.kas]
# We must rename this package since macros expect kas to be in scope:
version = "0.14.0-alpha"
version = "0.14.1"
package = "kas-core"
path = "../kas-core"
features = ["spawn"]
6 changes: 3 additions & 3 deletions crates/kas-view/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas-view"
version = "0.14.0-alpha"
version = "0.14.1"
authors = ["Diggory Hardy <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -19,9 +19,9 @@ rustdoc-args = ["--cfg", "doc_cfg"]
# RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --no-deps --open

[dependencies]
kas-widgets = { version = "0.14.0-alpha", path = "../kas-widgets" }
kas-widgets = { version = "0.14.1", path = "../kas-widgets" }
log = "0.4"
linear-map = "1.2.0"

# We must rename this package since macros expect kas to be in scope:
kas = { version = "0.14.0-alpha", package = "kas-core", path = "../kas-core" }
kas = { version = "0.14.1", package = "kas-core", path = "../kas-core" }
4 changes: 2 additions & 2 deletions crates/kas-wgpu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas-wgpu"
version = "0.14.0-alpha"
version = "0.14.1"
authors = ["Diggory Hardy <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down Expand Up @@ -39,7 +39,7 @@ wgpu-core = "0.18.1"

[dependencies.kas]
# Rename package purely for convenience:
version = "0.14.0-alpha"
version = "0.14.1"
package = "kas-core"
path = "../kas-core"

Expand Down
6 changes: 3 additions & 3 deletions crates/kas-widgets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kas-widgets"
version = "0.14.0-alpha"
version = "0.14.1"
authors = ["Diggory Hardy <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down Expand Up @@ -28,8 +28,8 @@ smallvec = "1.6.1"
unicode-segmentation = "1.7"
thiserror = "1.0.23"
image = { version = "0.24.1", optional = true }
kas-macros = { version = "0.14.0-alpha", path = "../kas-macros" }
kas-macros = { version = "0.14.1", path = "../kas-macros" }
linear-map = "1.2.0"

# We must rename this package since macros expect kas to be in scope:
kas = { version = "0.14.0-alpha", package = "kas-core", path = "../kas-core" }
kas = { version = "0.14.1", package = "kas-core", path = "../kas-core" }
6 changes: 3 additions & 3 deletions examples/mandlebrot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "kas-mandlebrot"
version = "0.14.0-alpha"
version = "0.14.1"
authors = ["Diggory Hardy <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
description = "KAS GUI / Mandlebrot example"
publish = false

[dependencies]
kas = { version = "0.14.0-alpha", features = ["wgpu"], path = "../.." }
kas-wgpu = { version = "0.14.0-alpha", path = "../../crates/kas-wgpu" }
kas = { version = "0.14.1", features = ["wgpu"], path = "../.." }
kas-wgpu = { version = "0.14.1", path = "../../crates/kas-wgpu" }
chrono = "0.4"
env_logger = "0.10"
log = "0.4"
Expand Down

0 comments on commit ee11395

Please sign in to comment.