Skip to content

Commit

Permalink
Prepare next release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jupeyy committed Nov 30, 2024
1 parent 8eb605b commit f8e0141
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 27 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down Expand Up @@ -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"
6 changes: 3 additions & 3 deletions lib/ddnet-account-client-http-fs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[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"
description = "The base client implementation for accounts, assuming no HTTP client."
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"
Expand Down
6 changes: 3 additions & 3 deletions lib/ddnet-account-client-reqwest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "ddnet-account-client-reqwest"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Jupeyy"]
license = "MIT OR Apache-2.0"
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"] }
Expand Down
4 changes: 2 additions & 2 deletions lib/ddnet-account-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "ddnet-account-client"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Jupeyy"]
license = "MIT OR Apache-2.0"
description = "The account related operations of a client, that want to manage accounts & do requests to the account server."
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"
Expand Down
6 changes: 3 additions & 3 deletions lib/ddnet-account-game-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion lib/ddnet-account-sql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lib/ddnet-accounts-shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit f8e0141

Please sign in to comment.