From 3f52b23fe87a6579ff0c162827ca90a6fdce8d68 Mon Sep 17 00:00:00 2001 From: Michael Vlach Date: Sun, 14 Jul 2024 20:37:34 +0200 Subject: [PATCH] bump version --- Version | 2 +- agdb/Cargo.toml | 4 ++-- agdb_api/rust/Cargo.toml | 4 ++-- agdb_api/typescript/package-lock.json | 4 ++-- agdb_api/typescript/package.json | 2 +- agdb_benchmarks/Cargo.toml | 2 +- agdb_derive/Cargo.toml | 2 +- agdb_server/Cargo.toml | 6 +++--- agdb_server/openapi/schema.json | 2 +- docs/api.md | 2 +- examples/app_db/Cargo.toml | 2 +- examples/indexes/Cargo.toml | 2 +- examples/joins/Cargo.toml | 2 +- examples/schema_migration/Cargo.toml | 2 +- examples/server_client_rust/Cargo.toml | 4 ++-- examples/server_client_typescript/package-lock.json | 2 +- examples/strong_types/Cargo.toml | 2 +- 17 files changed, 23 insertions(+), 23 deletions(-) diff --git a/Version b/Version index 39e898a4f..7486fdbc5 100644 --- a/Version +++ b/Version @@ -1 +1 @@ -0.7.1 +0.7.2 diff --git a/agdb/Cargo.toml b/agdb/Cargo.toml index 9fe428fbf..064fd3a0f 100644 --- a/agdb/Cargo.toml +++ b/agdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agdb" -version = "0.7.1" +version = "0.7.2" edition = "2021" license = "Apache-2.0" homepage = "https://github.com/agnesoft/agdb" @@ -20,7 +20,7 @@ openapi = ["dep:utoipa"] serde = ["dep:serde"] [dependencies] -agdb_derive = { version = "0.7.1", path = "../agdb_derive", optional = true } +agdb_derive = { version = "0.7.2", path = "../agdb_derive", optional = true } utoipa = { version = "4", optional = true } serde = { version = "1", features = ["derive"], optional = true } diff --git a/agdb_api/rust/Cargo.toml b/agdb_api/rust/Cargo.toml index be8c699c0..d6a53f370 100644 --- a/agdb_api/rust/Cargo.toml +++ b/agdb_api/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agdb_api" -version = "0.7.1" +version = "0.7.2" edition = "2021" license = "Apache-2.0" homepage = "https://github.com/agnesoft/agdb" @@ -17,7 +17,7 @@ categories = ["database", "api-bindings"] reqwest = ["dep:reqwest"] [dependencies] -agdb = { version = "0.7.1", path = "../../agdb", features = ["serde"] } +agdb = { version = "0.7.2", path = "../../agdb", features = ["serde"] } reqwest = { version = "0.12", features = ["json"], optional = true } serde = { version = "1", features = ["derive"] } serde_json = "1" diff --git a/agdb_api/typescript/package-lock.json b/agdb_api/typescript/package-lock.json index bbadc488d..47e93eefe 100644 --- a/agdb_api/typescript/package-lock.json +++ b/agdb_api/typescript/package-lock.json @@ -1,12 +1,12 @@ { "name": "@agnesoft/agdb_api", - "version": "0.7.1", + "version": "0.7.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@agnesoft/agdb_api", - "version": "0.7.1", + "version": "0.7.2", "license": "Apache-2.0", "dependencies": { "openapi-client-axios": "^7.5.5" diff --git a/agdb_api/typescript/package.json b/agdb_api/typescript/package.json index 7e4e3f86d..707f750ef 100644 --- a/agdb_api/typescript/package.json +++ b/agdb_api/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@agnesoft/agdb_api", - "version": "0.7.1", + "version": "0.7.2", "license": "Apache-2.0", "description": "Agnesoft Graph Database API client for typescript/javascript", "author": "Agnesoft", diff --git a/agdb_benchmarks/Cargo.toml b/agdb_benchmarks/Cargo.toml index 19f6881c1..48d2cc779 100644 --- a/agdb_benchmarks/Cargo.toml +++ b/agdb_benchmarks/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -agdb = { version = "0.7.1", path = "../agdb" } +agdb = { version = "0.7.2", path = "../agdb" } num-format = { version = "0.4", features = ["with-serde"] } serde = { version = "1", features = ["derive"] } serde_yaml = "0.9" diff --git a/agdb_derive/Cargo.toml b/agdb_derive/Cargo.toml index d677d871f..e7992dc1c 100644 --- a/agdb_derive/Cargo.toml +++ b/agdb_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agdb_derive" -version = "0.7.1" +version = "0.7.2" edition = "2021" license = "Apache-2.0" homepage = "https://github.com/agnesoft/agdb" diff --git a/agdb_server/Cargo.toml b/agdb_server/Cargo.toml index bfafd0bab..1c1984914 100644 --- a/agdb_server/Cargo.toml +++ b/agdb_server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agdb_server" -version = "0.7.1" +version = "0.7.2" edition = "2021" license = "Apache-2.0" homepage = "https://github.com/agnesoft/agdb" @@ -12,8 +12,8 @@ keywords = ["graph", "database", "api"] categories = ["database", "database-implementations"] [dependencies] -agdb = { version = "0.7.1", path = "../agdb", features = ["serde", "openapi"] } -agdb_api = { version = "0.7.1", path = "../agdb_api/rust", features = ["reqwest"] } +agdb = { version = "0.7.2", path = "../agdb", features = ["serde", "openapi"] } +agdb_api = { version = "0.7.2", 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" diff --git a/agdb_server/openapi/schema.json b/agdb_server/openapi/schema.json index 10408527e..17d7fecbf 100644 --- a/agdb_server/openapi/schema.json +++ b/agdb_server/openapi/schema.json @@ -6,7 +6,7 @@ "license": { "name": "Apache-2.0" }, - "version": "0.7.1" + "version": "0.7.2" }, "servers": [ { diff --git a/docs/api.md b/docs/api.md index 01bb82c34..274b8a6be 100644 --- a/docs/api.md +++ b/docs/api.md @@ -31,7 +31,7 @@ The [agdb server](/docs/server.md) can be accessed using OpenAPI (REST) via any "license": { "name": "Apache-2.0" }, - "version": "0.7.1" + "version": "0.7.2" }, "servers": [ { diff --git a/examples/app_db/Cargo.toml b/examples/app_db/Cargo.toml index c5da0236f..671dd8062 100644 --- a/examples/app_db/Cargo.toml +++ b/examples/app_db/Cargo.toml @@ -4,4 +4,4 @@ edition = "2021" license = "Apache-2.0" [dependencies] -agdb = { version = "0.7.1", path = "../../agdb" } +agdb = { version = "0.7.2", path = "../../agdb" } diff --git a/examples/indexes/Cargo.toml b/examples/indexes/Cargo.toml index 823199ea9..cf3f1d83c 100644 --- a/examples/indexes/Cargo.toml +++ b/examples/indexes/Cargo.toml @@ -4,4 +4,4 @@ edition = "2021" license = "Apache-2.0" [dependencies] -agdb = { version = "0.7.1", path = "../../agdb" } +agdb = { version = "0.7.2", path = "../../agdb" } diff --git a/examples/joins/Cargo.toml b/examples/joins/Cargo.toml index 5aa98a145..f17c9bcc4 100644 --- a/examples/joins/Cargo.toml +++ b/examples/joins/Cargo.toml @@ -4,4 +4,4 @@ edition = "2021" license = "Apache-2.0" [dependencies] -agdb = { version = "0.7.1", path = "../../agdb" } +agdb = { version = "0.7.2", path = "../../agdb" } diff --git a/examples/schema_migration/Cargo.toml b/examples/schema_migration/Cargo.toml index 288b3d9a1..5257469d4 100644 --- a/examples/schema_migration/Cargo.toml +++ b/examples/schema_migration/Cargo.toml @@ -4,4 +4,4 @@ edition = "2021" license = "Apache-2.0" [dependencies] -agdb = { version = "0.7.1", path = "../../agdb" } +agdb = { version = "0.7.2", path = "../../agdb" } diff --git a/examples/server_client_rust/Cargo.toml b/examples/server_client_rust/Cargo.toml index 129ffc238..1179e9917 100644 --- a/examples/server_client_rust/Cargo.toml +++ b/examples/server_client_rust/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -agdb = { version = "0.7.1", path = "../../agdb" } -agdb_api = { version = "0.7.1", path = "../../agdb_api/rust", features = ["reqwest"] } +agdb = { version = "0.7.2", path = "../../agdb" } +agdb_api = { version = "0.7.2", path = "../../agdb_api/rust", features = ["reqwest"] } tokio = { version = "1", features = ["full"] } anyhow = "1.0" diff --git a/examples/server_client_typescript/package-lock.json b/examples/server_client_typescript/package-lock.json index 84621fce5..996d32a4f 100644 --- a/examples/server_client_typescript/package-lock.json +++ b/examples/server_client_typescript/package-lock.json @@ -17,7 +17,7 @@ }, "../../agdb_api/typescript": { "name": "@agnesoft/agdb_api", - "version": "0.7.1", + "version": "0.7.2", "license": "Apache-2.0", "dependencies": { "openapi-client-axios": "^7.5.5" diff --git a/examples/strong_types/Cargo.toml b/examples/strong_types/Cargo.toml index c33c233ad..75d308d01 100644 --- a/examples/strong_types/Cargo.toml +++ b/examples/strong_types/Cargo.toml @@ -4,4 +4,4 @@ edition = "2021" license = "Apache-2.0" [dependencies] -agdb = { version = "0.7.1", path = "../../agdb" } +agdb = { version = "0.7.2", path = "../../agdb" }