Skip to content

Commit

Permalink
all: release 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mahkoh committed Apr 7, 2024
1 parent a64b9e9 commit 2136f13
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
8 changes: 8 additions & 0 deletions deploy-notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Unreleased

# 1.0

- Needs jay-config release.
- Needs jay-algorithms release.
- Needs jay-toml-config release.
- Needs jay-compositor release.
2 changes: 1 addition & 1 deletion jay-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
5 changes: 5 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Unreleased

# 1.0

This is the first stable release of Jay.
2 changes: 1 addition & 1 deletion toml-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 2136f13

Please sign in to comment.