Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] Release 0.8.0 #1205 #1207

Merged
merged 3 commits into from
Aug 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/agdb_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,5 @@ jobs:
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: |
cargo run --release --package agdb_ci
git diff --name-only
if [[ "$(git diff --name-only)" != "" ]]; then echo "ERROR: Version changed but some packages have not been updated. Have you forgotten to run agdb_ci?"; exit 1; fi
2 changes: 1 addition & 1 deletion Version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.2
0.8.0
4 changes: 2 additions & 2 deletions agdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agdb"
version = "0.7.2"
version = "0.8.0"
edition = "2021"
license = "Apache-2.0"
homepage = "https://github.com/agnesoft/agdb"
Expand All @@ -20,7 +20,7 @@ openapi = ["dep:utoipa"]
serde = ["dep:serde"]

[dependencies]
agdb_derive = { version = "0.7.2", path = "../agdb_derive", optional = true }
agdb_derive = { version = "0.8.0", path = "../agdb_derive", optional = true }
utoipa = { version = "4", optional = true }
serde = { version = "1", features = ["derive"], optional = true }

Expand Down
Loading