commit
009342f3f4
6 changed files with 21 additions and 8 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -501,7 +501,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "jay-compositor"
|
||||
version = "0.1.0"
|
||||
version = "1.0.1"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
|
|
@ -543,7 +543,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "jay-config"
|
||||
version = "0.1.0"
|
||||
version = "1.0.0"
|
||||
dependencies = [
|
||||
"backtrace",
|
||||
"bincode",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "jay-compositor"
|
||||
version = "0.1.0"
|
||||
version = "1.0.1"
|
||||
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"
|
||||
|
|
|
|||
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]
|
||||
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"
|
||||
|
|
|
|||
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"]
|
||||
|
||||
[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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue