From 32e7e3a14d59bf61469f1115027a44ada9981d8d Mon Sep 17 00:00:00 2001 From: Eugene Date: Mon, 4 Aug 2025 14:27:52 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.15.0=20=E2=86=92=200.16.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- warpgate-admin/Cargo.toml | 2 +- warpgate-common/Cargo.toml | 2 +- warpgate-core/Cargo.toml | 2 +- warpgate-database-protocols/Cargo.toml | 2 +- warpgate-db-entities/Cargo.toml | 2 +- warpgate-db-migrations/Cargo.toml | 2 +- warpgate-protocol-http/Cargo.toml | 2 +- warpgate-protocol-mysql/Cargo.toml | 2 +- warpgate-protocol-postgres/Cargo.toml | 2 +- warpgate-protocol-ssh/Cargo.toml | 2 +- warpgate-sso/Cargo.toml | 2 +- warpgate-web/Cargo.toml | 2 +- warpgate/Cargo.toml | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2e6a62d0..be7ec421 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.15.0 +current_version = 0.16.0 commit = True tag = True diff --git a/warpgate-admin/Cargo.toml b/warpgate-admin/Cargo.toml index 728df08d..9f15359a 100644 --- a/warpgate-admin/Cargo.toml +++ b/warpgate-admin/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-admin" -version = "0.15.0" +version = "0.16.0" [dependencies] anyhow = { version = "1.0", features = ["std"], default-features = false } diff --git a/warpgate-common/Cargo.toml b/warpgate-common/Cargo.toml index 6ffdc141..5bc73f26 100644 --- a/warpgate-common/Cargo.toml +++ b/warpgate-common/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-common" -version = "0.15.0" +version = "0.16.0" [[bin]] name = "config-schema" diff --git a/warpgate-core/Cargo.toml b/warpgate-core/Cargo.toml index 00e5f3f4..56e3f2fd 100644 --- a/warpgate-core/Cargo.toml +++ b/warpgate-core/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-core" -version = "0.15.0" +version = "0.16.0" [dependencies] warpgate-common = { version = "*", path = "../warpgate-common" } diff --git a/warpgate-database-protocols/Cargo.toml b/warpgate-database-protocols/Cargo.toml index 0844d107..19d30f04 100644 --- a/warpgate-database-protocols/Cargo.toml +++ b/warpgate-database-protocols/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "warpgate-database-protocols" -version = "0.15.0" +version = "0.16.0" description = "Core of SQLx, the rust SQL toolkit. Just the database protocol parts." license = "MIT OR Apache-2.0" edition = "2021" diff --git a/warpgate-db-entities/Cargo.toml b/warpgate-db-entities/Cargo.toml index 953aede2..24b93fa7 100644 --- a/warpgate-db-entities/Cargo.toml +++ b/warpgate-db-entities/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-db-entities" -version = "0.15.0" +version = "0.16.0" [dependencies] bytes = { version = "1.4", default-features = false } diff --git a/warpgate-db-migrations/Cargo.toml b/warpgate-db-migrations/Cargo.toml index 21d7bf19..2afc32e8 100644 --- a/warpgate-db-migrations/Cargo.toml +++ b/warpgate-db-migrations/Cargo.toml @@ -3,7 +3,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-db-migrations" publish = false -version = "0.15.0" +version = "0.16.0" [lib] diff --git a/warpgate-protocol-http/Cargo.toml b/warpgate-protocol-http/Cargo.toml index 67234890..93bce0e9 100644 --- a/warpgate-protocol-http/Cargo.toml +++ b/warpgate-protocol-http/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-protocol-http" -version = "0.15.0" +version = "0.16.0" [dependencies] anyhow = "1.0" diff --git a/warpgate-protocol-mysql/Cargo.toml b/warpgate-protocol-mysql/Cargo.toml index ad1b5377..b56a386f 100644 --- a/warpgate-protocol-mysql/Cargo.toml +++ b/warpgate-protocol-mysql/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-protocol-mysql" -version = "0.15.0" +version = "0.16.0" [dependencies] warpgate-common = { version = "*", path = "../warpgate-common", default-features = false } diff --git a/warpgate-protocol-postgres/Cargo.toml b/warpgate-protocol-postgres/Cargo.toml index bebed3f8..1d502f10 100644 --- a/warpgate-protocol-postgres/Cargo.toml +++ b/warpgate-protocol-postgres/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-protocol-postgres" -version = "0.15.0" +version = "0.16.0" [dependencies] warpgate-common = { version = "*", path = "../warpgate-common", default-features = false } diff --git a/warpgate-protocol-ssh/Cargo.toml b/warpgate-protocol-ssh/Cargo.toml index 162a6f9a..94ed4a07 100644 --- a/warpgate-protocol-ssh/Cargo.toml +++ b/warpgate-protocol-ssh/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-protocol-ssh" -version = "0.15.0" +version = "0.16.0" [dependencies] ansi_term = { version = "0.12", default-features = false } diff --git a/warpgate-sso/Cargo.toml b/warpgate-sso/Cargo.toml index 54e9453e..508e42c5 100644 --- a/warpgate-sso/Cargo.toml +++ b/warpgate-sso/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-sso" -version = "0.15.0" +version = "0.16.0" [dependencies] bytes.workspace = true diff --git a/warpgate-web/Cargo.toml b/warpgate-web/Cargo.toml index 598c1efa..b687c9a4 100644 --- a/warpgate-web/Cargo.toml +++ b/warpgate-web/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate-web" -version = "0.15.0" +version = "0.16.0" [dependencies] serde.workspace = true diff --git a/warpgate/Cargo.toml b/warpgate/Cargo.toml index a61623a2..bcf44fe6 100644 --- a/warpgate/Cargo.toml +++ b/warpgate/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" license = "Apache-2.0" name = "warpgate" -version = "0.15.0" +version = "0.16.0" [dependencies] ansi_term = { version = "0.12", default-features = false }