From f8e0141dca9ecaee3d5f3b27debda92483a8b7f2 Mon Sep 17 00:00:00 2001 From: Jupeyy Date: Sat, 30 Nov 2024 18:07:48 +0100 Subject: [PATCH] Prepare next release --- Cargo.lock | 14 +++++++------- Cargo.toml | 14 +++++++------- lib/ddnet-account-client-http-fs/Cargo.toml | 6 +++--- lib/ddnet-account-client-reqwest/Cargo.toml | 6 +++--- lib/ddnet-account-client/Cargo.toml | 4 ++-- lib/ddnet-account-game-server/Cargo.toml | 6 +++--- lib/ddnet-account-sql/Cargo.toml | 2 +- lib/ddnet-accounts-shared/Cargo.toml | 2 +- 8 files changed, 27 insertions(+), 27 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 59cc9a9..773d7f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -600,7 +600,7 @@ checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" [[package]] name = "ddnet-account-client" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -618,7 +618,7 @@ dependencies = [ [[package]] name = "ddnet-account-client-http-fs" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -640,7 +640,7 @@ dependencies = [ [[package]] name = "ddnet-account-client-reqwest" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -652,7 +652,7 @@ dependencies = [ [[package]] name = "ddnet-account-game-server" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -666,7 +666,7 @@ dependencies = [ [[package]] name = "ddnet-account-sql" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -676,7 +676,7 @@ dependencies = [ [[package]] name = "ddnet-accounts" -version = "0.1.1" +version = "0.2.0" dependencies = [ "anyhow", "argon2", @@ -724,7 +724,7 @@ dependencies = [ [[package]] name = "ddnet-accounts-shared" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "argon2", diff --git a/Cargo.toml b/Cargo.toml index eb87ee7..5b0ab74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ [package] name = "ddnet-accounts" -version = "0.1.1" +version = "0.2.0" edition = "2021" authors = ["Jupeyy"] license = "MIT OR Apache-2.0" @@ -24,8 +24,8 @@ name = "account-server" [dependencies] ddnet-accounts-types = { version = "0.1.0", path = "lib/ddnet-accounts-types" } -ddnet-accounts-shared = { version = "0.1.0", path = "lib/ddnet-accounts-shared" } -ddnet-account-sql = { version = "0.2.0", path = "lib/ddnet-account-sql", features = ["mysql"] } +ddnet-accounts-shared = { version = "0.2.0", path = "lib/ddnet-accounts-shared" } +ddnet-account-sql = { version = "0.3.0", path = "lib/ddnet-account-sql", features = ["mysql"] } tokio = { version = "1.41.1", features = ["rt-multi-thread", "sync", "fs", "time", "macros"] } axum = "0.7.9" @@ -62,10 +62,10 @@ either = "1.13.0" notify = { version = "7.0.0", default-features = false, features = ["macos_kqueue"] } [dev-dependencies] -ddnet-account-client = { version = "0.1.0", path = "lib/ddnet-account-client" } -ddnet-account-game-server = { version = "0.2.0", path = "lib/ddnet-account-game-server" } -ddnet-account-client-http-fs = { version = "0.1.0", path = "lib/ddnet-account-client-http-fs" } -ddnet-account-client-reqwest = { version = "0.1.0", path = "lib/ddnet-account-client-reqwest" } +ddnet-account-client = { version = "0.2.0", path = "lib/ddnet-account-client" } +ddnet-account-game-server = { version = "0.3.0", path = "lib/ddnet-account-game-server" } +ddnet-account-client-http-fs = { version = "0.2.0", path = "lib/ddnet-account-client-http-fs" } +ddnet-account-client-reqwest = { version = "0.2.0", path = "lib/ddnet-account-client-reqwest" } regex = "1.11.1" tempfile = "3.14.0" diff --git a/lib/ddnet-account-client-http-fs/Cargo.toml b/lib/ddnet-account-client-http-fs/Cargo.toml index c2fd8b6..5da766c 100644 --- a/lib/ddnet-account-client-http-fs/Cargo.toml +++ b/lib/ddnet-account-client-http-fs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ddnet-account-client-http-fs" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["Jupeyy"] license = "MIT OR Apache-2.0" @@ -8,9 +8,9 @@ description = "The base client implementation for accounts, assuming no HTTP cli repository = "https://github.com/ddnet/ddnet-accounts" [dependencies] -ddnet-accounts-shared = { version = "0.1.0", path = "../ddnet-accounts-shared" } +ddnet-accounts-shared = { version = "0.2.0", path = "../ddnet-accounts-shared" } ddnet-accounts-types = { version = "0.1.0", path = "../ddnet-accounts-types" } -ddnet-account-client = { version = "0.1.0", path = "../ddnet-account-client" } +ddnet-account-client = { version = "0.2.0", path = "../ddnet-account-client" } anyhow = { version = "1.0.93", features = ["backtrace"] } parking_lot = "0.12.3" diff --git a/lib/ddnet-account-client-reqwest/Cargo.toml b/lib/ddnet-account-client-reqwest/Cargo.toml index 0c6e07d..a7679c4 100644 --- a/lib/ddnet-account-client-reqwest/Cargo.toml +++ b/lib/ddnet-account-client-reqwest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ddnet-account-client-reqwest" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["Jupeyy"] license = "MIT OR Apache-2.0" @@ -8,8 +8,8 @@ description = "The client implementation using reqwest as HTTP client." repository = "https://github.com/ddnet/ddnet-accounts" [dependencies] -ddnet-account-client-http-fs = { version = "0.1.0", path = "../ddnet-account-client-http-fs" } -ddnet-account-client = { version = "0.1.0", path = "../ddnet-account-client" } +ddnet-account-client-http-fs = { version = "0.2.0", path = "../ddnet-account-client-http-fs" } +ddnet-account-client = { version = "0.2.0", path = "../ddnet-account-client" } async-trait = "0.1.83" url = { version = "2.5.4", features = ["serde"] } diff --git a/lib/ddnet-account-client/Cargo.toml b/lib/ddnet-account-client/Cargo.toml index 69e8474..7953a39 100644 --- a/lib/ddnet-account-client/Cargo.toml +++ b/lib/ddnet-account-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ddnet-account-client" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["Jupeyy"] license = "MIT OR Apache-2.0" @@ -8,7 +8,7 @@ description = "The account related operations of a client, that want to manage a repository = "https://github.com/ddnet/ddnet-accounts" [dependencies] -ddnet-accounts-shared = { version = "0.1.0", path = "../ddnet-accounts-shared" } +ddnet-accounts-shared = { version = "0.2.0", path = "../ddnet-accounts-shared" } ddnet-accounts-types = { version = "0.1.0", path = "../ddnet-accounts-types" } async-trait = "0.1.83" diff --git a/lib/ddnet-account-game-server/Cargo.toml b/lib/ddnet-account-game-server/Cargo.toml index 11cb73b..a93b47c 100644 --- a/lib/ddnet-account-game-server/Cargo.toml +++ b/lib/ddnet-account-game-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ddnet-account-game-server" -version = "0.2.0" +version = "0.3.0" edition = "2021" authors = ["Jupeyy"] license = "MIT OR Apache-2.0" @@ -9,8 +9,8 @@ repository = "https://github.com/ddnet/ddnet-accounts" [dependencies] ddnet-accounts-types = { version = "0.1.0", path = "../ddnet-accounts-types" } -ddnet-accounts-shared = { version = "0.1.0", path = "../ddnet-accounts-shared" } -ddnet-account-sql = { version = "0.2.0", path = "../ddnet-account-sql", default-features = false } +ddnet-accounts-shared = { version = "0.2.0", path = "../ddnet-accounts-shared" } +ddnet-account-sql = { version = "0.3.0", path = "../ddnet-account-sql", default-features = false } sqlx = { version = "0.8.2", features = ["any", "runtime-tokio-rustls", "chrono"] } anyhow = { version = "1.0.93", features = ["backtrace"] } diff --git a/lib/ddnet-account-sql/Cargo.toml b/lib/ddnet-account-sql/Cargo.toml index 18dcf0e..75dd0b5 100644 --- a/lib/ddnet-account-sql/Cargo.toml +++ b/lib/ddnet-account-sql/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ddnet-account-sql" -version = "0.2.0" +version = "0.3.0" edition = "2021" authors = ["Jupeyy"] license = "MIT OR Apache-2.0" diff --git a/lib/ddnet-accounts-shared/Cargo.toml b/lib/ddnet-accounts-shared/Cargo.toml index ed115b7..531f109 100644 --- a/lib/ddnet-accounts-shared/Cargo.toml +++ b/lib/ddnet-accounts-shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ddnet-accounts-shared" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["Jupeyy"] license = "MIT OR Apache-2.0"