all: release 1.0
This commit is contained in:
parent
a64b9e99d9
commit
2136f13795
6 changed files with 21 additions and 8 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -501,7 +501,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jay-compositor"
|
name = "jay-compositor"
|
||||||
version = "0.1.0"
|
version = "1.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
@ -543,7 +543,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jay-config"
|
name = "jay-config"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"backtrace",
|
"backtrace",
|
||||||
"bincode",
|
"bincode",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "jay-compositor"
|
name = "jay-compositor"
|
||||||
version = "0.1.0"
|
version = "1.0.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build/build.rs"
|
build = "build/build.rs"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
|
@ -22,9 +22,9 @@ panic = "abort"
|
||||||
panic = "abort"
|
panic = "abort"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
jay-config = { path = "jay-config" }
|
jay-config = { version = "1.0.0", path = "jay-config" }
|
||||||
jay-toml-config = { path = "toml-config" }
|
jay-toml-config = { version = "0.1.0", path = "toml-config" }
|
||||||
jay-algorithms = { path = "algorithms" }
|
jay-algorithms = { version = "0.1.0", path = "algorithms" }
|
||||||
|
|
||||||
uapi = "0.2.13"
|
uapi = "0.2.13"
|
||||||
thiserror = "1.0.56"
|
thiserror = "1.0.56"
|
||||||
|
|
|
||||||
8
deploy-notes.md
Normal file
8
deploy-notes.md
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
# Unreleased
|
||||||
|
|
||||||
|
# 1.0
|
||||||
|
|
||||||
|
- Needs jay-config release.
|
||||||
|
- Needs jay-algorithms release.
|
||||||
|
- Needs jay-toml-config release.
|
||||||
|
- Needs jay-compositor release.
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "jay-config"
|
name = "jay-config"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
description = "Configuration crate for the Jay compositor"
|
description = "Configuration crate for the Jay compositor"
|
||||||
|
|
|
||||||
5
release-notes.md
Normal file
5
release-notes.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Unreleased
|
||||||
|
|
||||||
|
# 1.0
|
||||||
|
|
||||||
|
This is the first stable release of Jay.
|
||||||
|
|
@ -9,7 +9,7 @@ description = "Internal dependency of the Jay compositor"
|
||||||
crate-type = ["lib", "cdylib"]
|
crate-type = ["lib", "cdylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
jay-config = { path = "../jay-config" }
|
jay-config = { version = "1.0.0", path = "../jay-config" }
|
||||||
log = "0.4.14"
|
log = "0.4.14"
|
||||||
thiserror = "1.0.57"
|
thiserror = "1.0.57"
|
||||||
error_reporter = "1.0.0"
|
error_reporter = "1.0.0"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue