Skip to content

Commit

Permalink
[ci] Release 0.6.1 #1019 (#1020)
Browse files Browse the repository at this point in the history
* fix condition

* run agdb_ci
  • Loading branch information
michaelvlach authored Jan 28, 2024
1 parent e04533a commit 35dc383
Show file tree
Hide file tree
Showing 16 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- uses: actions/checkout@v4
- id: new_version
run: |
if [[ "$(git diff origin/main --name-only -- Version)" != "" ]]; then echo "new_version=$(cat Version)" >> $GITHUB_OUTPUT; fi
echo "New version: ${CURRENT_VERSION}"
if [[ "$(git diff HEAD^ --name-only -- Version)" != "" ]]; then echo "new_version=$(cat Version)" >> $GITHUB_OUTPUT; fi
echo "New version: $(cat Version)"
release:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.6.1
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.6.0"
version = "0.6.1"
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.6.0", path = "../agdb_derive", optional = true }
agdb_derive = { version = "0.6.1", path = "../agdb_derive", optional = true }
utoipa = { version = "4", optional = true }
serde = { version = "1", features = ["derive"], optional = true }

Expand Down
4 changes: 2 additions & 2 deletions agdb_api/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agdb_api"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
homepage = "https://github.com/agnesoft/agdb"
repository = "https://github.com/agnesoft/agdb"
Expand All @@ -16,7 +16,7 @@ categories = ["database", "api-bindings"]
reqwest = ["dep:reqwest"]

[dependencies]
agdb = { version = "0.6.0", path = "../../agdb", features = ["serde"] }
agdb = { version = "0.6.1", path = "../../agdb", features = ["serde"] }
reqwest = { version = "0.11", features = ["json"], optional = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
4 changes: 2 additions & 2 deletions agdb_api/typescript/package-lock.json

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

2 changes: 1 addition & 1 deletion agdb_api/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agnesoft/agdb_api",
"version": "0.6.0",
"version": "0.6.1",
"license": "Apache-2.0",
"description": "Agnesoft Graph Database API client for typescript/javascript",
"author": "Agnesoft",
Expand Down
2 changes: 1 addition & 1 deletion agdb_benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "Apache-2.0"

[dependencies]
agdb = { version = "0.6.0", path = "../agdb" }
agdb = { version = "0.6.1", path = "../agdb" }
num-format = { version = "0.4", features = ["with-serde"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
Expand Down
2 changes: 1 addition & 1 deletion agdb_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agdb_derive"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
license = "Apache-2.0"
homepage = "https://github.com/agnesoft/agdb"
Expand Down
6 changes: 3 additions & 3 deletions agdb_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agdb_server"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
license = "Apache-2.0"
homepage = "https://github.com/agnesoft/agdb"
Expand All @@ -12,8 +12,8 @@ keywords = ["graph", "database", "api"]
categories = ["database", "database-interfaces"]

[dependencies]
agdb = { version = "0.6.0", path = "../agdb", features = ["serde", "openapi"] }
agdb_api = { version = "0.6.0", path = "../agdb_api/rust", features = ["reqwest"] }
agdb = { version = "0.6.1", path = "../agdb", features = ["serde", "openapi"] }
agdb_api = { version = "0.6.1", path = "../agdb_api/rust", features = ["reqwest"] }
axum = { version = "0.7", features = ["http2"] }
axum-extra = { version = "0.9", features = ["typed-header"] }
http-body-util = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/app_db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ edition = "2021"
license = "Apache-2.0"

[dependencies]
agdb = { version = "0.6.0", path = "../../agdb" }
agdb = { version = "0.6.1", path = "../../agdb" }
2 changes: 1 addition & 1 deletion examples/indexes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ edition = "2021"
license = "Apache-2.0"

[dependencies]
agdb = { version = "0.6.0", path = "../../agdb" }
agdb = { version = "0.6.1", path = "../../agdb" }
2 changes: 1 addition & 1 deletion examples/joins/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ edition = "2021"
license = "Apache-2.0"

[dependencies]
agdb = { version = "0.6.0", path = "../../agdb" }
agdb = { version = "0.6.1", path = "../../agdb" }
2 changes: 1 addition & 1 deletion examples/schema_migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ edition = "2021"
license = "Apache-2.0"

[dependencies]
agdb = { version = "0.6.0", path = "../../agdb" }
agdb = { version = "0.6.1", path = "../../agdb" }
4 changes: 2 additions & 2 deletions examples/server_client_rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "Apache-2.0"

[dependencies]
agdb = { version = "0.6.0", path = "../../agdb" }
agdb_api = { version = "0.6.0", path = "../../agdb_api/rust", features = ["reqwest"] }
agdb = { version = "0.6.1", path = "../../agdb" }
agdb_api = { version = "0.6.1", path = "../../agdb_api/rust", features = ["reqwest"] }
tokio = { version = "1", features = ["full"] }
anyhow = "1.0"
2 changes: 1 addition & 1 deletion examples/server_client_typescript/package-lock.json

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

2 changes: 1 addition & 1 deletion examples/strong_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ edition = "2021"
license = "Apache-2.0"

[dependencies]
agdb = { version = "0.6.0", path = "../../agdb" }
agdb = { version = "0.6.1", path = "../../agdb" }

0 comments on commit 35dc383

Please sign in to comment.