diff --git a/Cargo.lock b/Cargo.lock index 4cdd16c0..3c55bf8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -501,7 +501,7 @@ dependencies = [ [[package]] name = "jay-compositor" -version = "0.1.0" +version = "1.0.0" dependencies = [ "ahash", "anyhow", @@ -543,7 +543,7 @@ dependencies = [ [[package]] name = "jay-config" -version = "0.1.0" +version = "1.0.0" dependencies = [ "backtrace", "bincode", diff --git a/Cargo.toml b/Cargo.toml index 8f0a12c9..b2a1177e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jay-compositor" -version = "0.1.0" +version = "1.0.0" edition = "2021" build = "build/build.rs" license = "GPL-3.0-only" @@ -22,9 +22,9 @@ panic = "abort" panic = "abort" [dependencies] -jay-config = { path = "jay-config" } -jay-toml-config = { path = "toml-config" } -jay-algorithms = { path = "algorithms" } +jay-config = { version = "1.0.0", path = "jay-config" } +jay-toml-config = { version = "0.1.0", path = "toml-config" } +jay-algorithms = { version = "0.1.0", path = "algorithms" } uapi = "0.2.13" thiserror = "1.0.56" diff --git a/deploy-notes.md b/deploy-notes.md new file mode 100644 index 00000000..bb6cc8d6 --- /dev/null +++ b/deploy-notes.md @@ -0,0 +1,8 @@ +# Unreleased + +# 1.0 + +- Needs jay-config release. +- Needs jay-algorithms release. +- Needs jay-toml-config release. +- Needs jay-compositor release. diff --git a/jay-config/Cargo.toml b/jay-config/Cargo.toml index 39d1e113..42819d1f 100644 --- a/jay-config/Cargo.toml +++ b/jay-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jay-config" -version = "0.1.0" +version = "1.0.0" edition = "2021" license = "GPL-3.0-only" description = "Configuration crate for the Jay compositor" diff --git a/release-notes.md b/release-notes.md new file mode 100644 index 00000000..fde5e974 --- /dev/null +++ b/release-notes.md @@ -0,0 +1,5 @@ +# Unreleased + +# 1.0 + +This is the first stable release of Jay. diff --git a/toml-config/Cargo.toml b/toml-config/Cargo.toml index 4352621e..de7f9417 100644 --- a/toml-config/Cargo.toml +++ b/toml-config/Cargo.toml @@ -9,7 +9,7 @@ description = "Internal dependency of the Jay compositor" crate-type = ["lib", "cdylib"] [dependencies] -jay-config = { path = "../jay-config" } +jay-config = { version = "1.0.0", path = "../jay-config" } log = "0.4.14" thiserror = "1.0.57" error_reporter = "1.0.0"