Compare commits

..

No commits in common. "41c8a319b1344d2ce04bfa8f45eb9a267d8e9a3c" and "d24bcd9ab1a31afe20501c6b6e0f08436683c1c2" have entirely different histories.

14 changed files with 24 additions and 40 deletions

View file

@ -2,28 +2,12 @@
All notable changes to this project will be documented in this file.
## [0.9.4] - 2024-07-14
### Bug Fixes
- Add missing version for workspace dependencies ([fa7f78c](https://git.kemitix.net/kemitix/git-next/commit/fa7f78c7347ea2cd7a1a854e8aa07acb881911b2))
### Revert
- Fix: explicitly specify version in each crate ([adf56c1](https://git.kemitix.net/kemitix/git-next/commit/adf56c1b38f7ae397a1187302cead4864b3bddab))
## [0.9.3] - 2024-07-14
[59e8fc0](https://git.kemitix.net/kemitix/git-next/commit/59e8fc050d70db2779855f7d1d73e4cf00edd461)...[d24bcd9](https://git.kemitix.net/kemitix/git-next/commit/d24bcd9ab1a31afe20501c6b6e0f08436683c1c2)
### Bug Fixes
- Explicitly specify version in each crate ([cd93d04](https://git.kemitix.net/kemitix/git-next/commit/cd93d047cb948118f32ae0b8b0880a42a74226fb))
### Miscellaneous Tasks
- Release 0.9.3 ([d24bcd9](https://git.kemitix.net/kemitix/git-next/commit/d24bcd9ab1a31afe20501c6b6e0f08436683c1c2))
## [0.9.2] - 2024-07-14
[4c2e122](https://git.kemitix.net/kemitix/git-next/commit/4c2e1223467a3799506d9f44931aeec1d51cd26c)...[59e8fc0](https://git.kemitix.net/kemitix/git-next/commit/59e8fc050d70db2779855f7d1d73e4cf00edd461)

View file

@ -3,7 +3,7 @@ resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.9.4"
version = "0.9.3"
edition = "2021"
license = "MIT"
repository = "https://git.kemitix.net/kemitix/git-next"
@ -15,17 +15,17 @@ unwrap_used = "warn"
expect_used = "warn"
[workspace.dependencies]
git-next-server = { path = "crates/server", version = "0.9" }
git-next-server-actor = { path = "crates/server-actor", version = "0.9" }
git-next-config = { path = "crates/config", version = "0.9" }
git-next-git = { path = "crates/git", version = "0.9" }
git-next-forge = { path = "crates/forge", version = "0.9" }
git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.9" }
git-next-forge-github = { path = "crates/forge-github", version = "0.9" }
git-next-repo-actor = { path = "crates/repo-actor", version = "0.9" }
git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.9" }
git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.9" }
git-next-actor-macros = { path = "crates/actor-macros", version = "0.9" }
git-next-server = { path = "crates/server" }
git-next-server-actor = { path = "crates/server-actor" }
git-next-config = { path = "crates/config" }
git-next-git = { path = "crates/git" }
git-next-forge = { path = "crates/forge" }
git-next-forge-forgejo = { path = "crates/forge-forgejo" }
git-next-forge-github = { path = "crates/forge-github" }
git-next-repo-actor = { path = "crates/repo-actor" }
git-next-webhook-actor = { path = "crates/webhook-actor" }
git-next-file-watcher-actor = { path = "crates/file-watcher-actor" }
git-next-actor-macros = { path = "crates/actor-macros" }
# CLI parsing
clap = { version = "4.5", features = ["cargo", "derive"] }

View file

@ -1,6 +1,6 @@
[package]
name = "git-next-actor-macros"
version = { workspace = true }
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "git-next"
version = { workspace = true }
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "git-next-config"
version = { workspace = true }
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "git-next-file-watcher-actor"
version = { workspace = true }
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "git-next-forge-forgejo"
version = { workspace = true }
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "git-next-forge-github"
version = { workspace = true }
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "git-next-forge"
version = { workspace = true }
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "git-next-git"
version = { workspace = true }
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "git-next-repo-actor"
version = { workspace = true }
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "git-next-server-actor"
version = { workspace = true }
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "git-next-server"
version = { workspace = true }
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "git-next-webhook-actor"
version = { workspace = true }
version = "0.9.3"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }