Compare commits

..

3 commits

Author SHA1 Message Date
41c8a319b1 chore: Release 0.9.4
All checks were successful
Rust / build (push) Successful in 1m22s
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
ci/woodpecker/tag/push-next Pipeline was successful
ci/woodpecker/tag/cron-docker-builder Pipeline was successful
ci/woodpecker/tag/tag-created Pipeline was successful
2024-07-14 16:39:55 +01:00
adf56c1b38 revert: fix: explicitly specify version in each crate
All checks were successful
Rust / build (push) Successful in 1m24s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
This reverts commit cd93d047cb.
2024-07-14 16:39:17 +01:00
fa7f78c734 fix: add missing version for workspace dependencies
All checks were successful
Rust / build (push) Successful in 1m25s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
2024-07-14 16:37:12 +01:00
14 changed files with 40 additions and 24 deletions

View file

@ -2,12 +2,28 @@
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.3"
version = "0.9.4"
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" }
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" }
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" }
# CLI parsing
clap = { version = "4.5", features = ["cargo", "derive"] }

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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