1
0
Fork 0
forked from wry/wry

Merge pull request #155 from mahkoh/jorth/1.0

all: release 1.0
This commit is contained in:
mahkoh 2024-04-07 14:09:13 +02:00 committed by GitHub
commit 009342f3f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 21 additions and 8 deletions

4
Cargo.lock generated
View file

@ -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",

View file

@ -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
View 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.

View file

@ -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
View file

@ -0,0 +1,5 @@
# Unreleased
# 1.0
This is the first stable release of Jay.

View file

@ -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"