From 98b8e80552d375d3dd6122780e2f7ccd21202dc8 Mon Sep 17 00:00:00 2001 From: Valdemar Erk Date: Sun, 12 Jan 2025 10:43:25 +0100 Subject: [PATCH] release({{crate_name}}): bump to {{version}} --- twilight-cache-inmemory/Cargo.toml | 6 +++--- twilight-gateway-queue/Cargo.toml | 4 ++-- twilight-gateway/Cargo.toml | 8 ++++---- twilight-http-ratelimiting/Cargo.toml | 2 +- twilight-http/Cargo.toml | 10 +++++----- twilight-lavalink/Cargo.toml | 6 +++--- twilight-mention/Cargo.toml | 4 ++-- twilight-model/Cargo.toml | 2 +- twilight-standby/Cargo.toml | 4 ++-- twilight-util/Cargo.toml | 6 +++--- twilight-validate/Cargo.toml | 4 ++-- twilight/Cargo.toml | 22 +++++++++++----------- 12 files changed, 39 insertions(+), 39 deletions(-) diff --git a/twilight-cache-inmemory/Cargo.toml b/twilight-cache-inmemory/Cargo.toml index cf18930f514..da5ee861eda 100644 --- a/twilight-cache-inmemory/Cargo.toml +++ b/twilight-cache-inmemory/Cargo.toml @@ -11,16 +11,16 @@ name = "twilight-cache-inmemory" publish = true repository.workspace = true rust-version.workspace = true -version = "0.16.0-rc.1" +version = "0.16.0" [dependencies] bitflags = { default-features = false, version = "2" } dashmap = { default-features = false, version = ">= 5.3, < 7" } serde = { default-features = false, features = ["derive"], version = "1" } -twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0-rc.1" } +twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0" } # Optional dependencies. -twilight-util = { default-features = false, features = ["permission-calculator"], optional = true, path = "../twilight-util", version = "0.16.0-rc.1" } +twilight-util = { default-features = false, features = ["permission-calculator"], optional = true, path = "../twilight-util", version = "0.16.0" } [dev-dependencies] static_assertions = { default-features = false, version = "1" } diff --git a/twilight-gateway-queue/Cargo.toml b/twilight-gateway-queue/Cargo.toml index 342a9c06319..3b05380f7c6 100644 --- a/twilight-gateway-queue/Cargo.toml +++ b/twilight-gateway-queue/Cargo.toml @@ -10,7 +10,7 @@ name = "twilight-gateway-queue" publish = true repository.workspace = true rust-version.workspace = true -version = "0.16.0-rc.1" +version = "0.16.0" [dependencies] tokio = { default-features = false, features = ["macros", "rt", "sync", "time"], version = "1.15" } @@ -19,4 +19,4 @@ tracing = { default-features = false, features = ["std"], version = "0.1" } [dev-dependencies] static_assertions = { default-features = false, version = "1" } tokio = { default-features = false, features = ["test-util"], version = "1.0" } -twilight-http = { default-features = false, path = "../twilight-http", version = "0.16.0-rc.1" } +twilight-http = { default-features = false, path = "../twilight-http", version = "0.16.0" } diff --git a/twilight-gateway/Cargo.toml b/twilight-gateway/Cargo.toml index 92a8b38f7af..55dfaedf3e1 100644 --- a/twilight-gateway/Cargo.toml +++ b/twilight-gateway/Cargo.toml @@ -11,7 +11,7 @@ name = "twilight-gateway" publish = true repository.workspace = true rust-version.workspace = true -version = "0.16.0-rc.1" +version = "0.16.0" [dependencies] bitflags = { default-features = false, version = "2" } @@ -23,8 +23,8 @@ serde_json = { default-features = false, features = ["std"], version = "1" } tokio = { default-features = false, features = ["net", "rt", "sync", "time"], version = "1.19" } tokio-websockets = { default-features = false, features = ["client", "fastrand", "sha1_smol", "simd"], version = "0.11" } tracing = { default-features = false, features = ["std", "attributes"], version = "0.1" } -twilight-gateway-queue = { default-features = false, path = "../twilight-gateway-queue", version = "0.16.0-rc.1" } -twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0-rc.1" } +twilight-gateway-queue = { default-features = false, path = "../twilight-gateway-queue", version = "0.16.0" } +twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0" } # Optional # The default backend for flate2; miniz-oxide, works differently @@ -32,7 +32,7 @@ twilight-model = { default-features = false, path = "../twilight-model", version # it does not seem to update the total_in of the function to have an offset # https://github.com/alexcrichton/flate2-rs/issues/217 flate2 = { default-features = false, optional = true, version = "1.0.24" } -twilight-http = { default-features = false, optional = true, path = "../twilight-http", version = "0.16.0-rc.1" } +twilight-http = { default-features = false, optional = true, path = "../twilight-http", version = "0.16.0" } simd-json = { default-features = false, features = ["serde_impl", "swar-number-parsing"], optional = true, version = "0.14.0-rc.3" } [dev-dependencies] diff --git a/twilight-http-ratelimiting/Cargo.toml b/twilight-http-ratelimiting/Cargo.toml index 60ac8f6982c..0bab3e93d71 100644 --- a/twilight-http-ratelimiting/Cargo.toml +++ b/twilight-http-ratelimiting/Cargo.toml @@ -11,7 +11,7 @@ name = "twilight-http-ratelimiting" publish = true repository.workspace = true rust-version.workspace = true -version = "0.16.0-rc.1" +version = "0.16.0" [dependencies] tokio = { version = "1", default-features = false, features = ["rt", "sync", "time"] } diff --git a/twilight-http/Cargo.toml b/twilight-http/Cargo.toml index e17dfcef973..1b4aa479141 100644 --- a/twilight-http/Cargo.toml +++ b/twilight-http/Cargo.toml @@ -11,7 +11,7 @@ name = "twilight-http" publish = true repository.workspace = true rust-version.workspace = true -version = "0.16.0-rc.1" +version = "0.16.0" [dependencies] fastrand = { default-features = false, features = ["std"], version = "2" } @@ -28,9 +28,9 @@ serde = { default-features = false, features = ["derive"], version = "1" } serde_json = { default-features = false, features = ["std"], version = "1" } tokio = { default-features = false, features = ["sync", "time"], version = "1.0" } tracing = { default-features = false, features = ["std", "attributes"], version = "0.1" } -twilight-http-ratelimiting = { default-features = false, path = "../twilight-http-ratelimiting", version = "0.16.0-rc.1" } -twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0-rc.1" } -twilight-validate = { default-features = false, path = "../twilight-validate", version = "0.16.0-rc.1" } +twilight-http-ratelimiting = { default-features = false, path = "../twilight-http-ratelimiting", version = "0.16.0" } +twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0" } +twilight-validate = { default-features = false, path = "../twilight-validate", version = "0.16.0" } # Optional dependencies. brotli-decompressor = { default-features = false, features = ["std"], optional = true, version = "4" } @@ -51,5 +51,5 @@ rustls-aws-lc-rs = ["rustls-aws_lc_rs"] # Alias for convenience, underscores are [dev-dependencies] serde_test = { default-features = false, version = "1" } static_assertions = { default-features = false, version = "1.1.0" } -twilight-util = { default-features = false, features = ["builder"], path = "../twilight-util", version = "0.16.0-rc.1" } +twilight-util = { default-features = false, features = ["builder"], path = "../twilight-util", version = "0.16.0" } tokio = { default-features = false, features = ["macros", "rt-multi-thread"], version = "1.0" } diff --git a/twilight-lavalink/Cargo.toml b/twilight-lavalink/Cargo.toml index d99536f96df..8b75df4327e 100644 --- a/twilight-lavalink/Cargo.toml +++ b/twilight-lavalink/Cargo.toml @@ -22,7 +22,7 @@ serde_json = { default-features = false, features = ["std"], version = "1" } tokio = { default-features = false, features = ["macros", "net", "rt", "sync", "time"], version = "1.0" } tokio-websockets = { default-features = false, features = ["client", "fastrand", "sha1_smol", "simd"], version = "0.11" } tracing = { default-features = false, features = ["std", "attributes"], version = "0.1" } -twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0-rc.1" } +twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0" } # Optional dependencies. percent-encoding = { default-features = false, optional = true, version = "2" } @@ -33,8 +33,8 @@ serde_test = { default-features = false, version = "1" } static_assertions = { default-features = false, version = "1" } tokio = { default-features = false, features = ["macros", "rt-multi-thread"], version = "1.0" } tracing-subscriber = { default-features = false, features = ["fmt", "tracing-log"], version = "0.3" } -twilight-gateway = { default-features = false, features = ["rustls-native-roots"], path = "../twilight-gateway", version = "0.16.0-rc.1" } -twilight-http = { default-features = false, features = ["rustls-native-roots"], path = "../twilight-http", version = "0.16.0-rc.1" } +twilight-gateway = { default-features = false, features = ["rustls-native-roots"], path = "../twilight-gateway", version = "0.16.0" } +twilight-http = { default-features = false, features = ["rustls-native-roots"], path = "../twilight-http", version = "0.16.0" } [features] default = ["http-support", "rustls-platform-verifier", "rustls-ring"] diff --git a/twilight-mention/Cargo.toml b/twilight-mention/Cargo.toml index 050dd54fc32..4f1316f709e 100644 --- a/twilight-mention/Cargo.toml +++ b/twilight-mention/Cargo.toml @@ -10,10 +10,10 @@ name = "twilight-mention" publish = true repository.workspace = true rust-version.workspace = true -version = "0.16.0-rc.1" +version = "0.16.0" [dependencies] -twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0-rc.1" } +twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0" } [dev-dependencies] criterion = { default-features = false, version = "0.5" } diff --git a/twilight-model/Cargo.toml b/twilight-model/Cargo.toml index 20673c62586..d935d899908 100644 --- a/twilight-model/Cargo.toml +++ b/twilight-model/Cargo.toml @@ -10,7 +10,7 @@ name = "twilight-model" publish = true repository.workspace = true rust-version.workspace = true -version = "0.16.0-rc.1" +version = "0.16.0" [dependencies] bitflags = { default-features = false, version = "2" } diff --git a/twilight-standby/Cargo.toml b/twilight-standby/Cargo.toml index 5d271ea217e..f07eea3b55f 100644 --- a/twilight-standby/Cargo.toml +++ b/twilight-standby/Cargo.toml @@ -11,14 +11,14 @@ name = "twilight-standby" publish = true repository.workspace = true rust-version.workspace = true -version = "0.16.0-rc.1" +version = "0.16.0" [dependencies] dashmap = { default-features = false, version = ">= 5.3, < 7" } futures-core = { default-features = false, features = ["std"], version = "0.3" } tokio = { default-features = false, features = ["sync"], version = "1.0" } tracing = { default-features = false, features = ["std", "attributes"], version = "0.1" } -twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0-rc.1" } +twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0" } [dev-dependencies] anyhow = { default-features = false, features = ["std"], version = "1" } diff --git a/twilight-util/Cargo.toml b/twilight-util/Cargo.toml index badeb0896b1..537baeb1fcf 100644 --- a/twilight-util/Cargo.toml +++ b/twilight-util/Cargo.toml @@ -10,11 +10,11 @@ name = "twilight-util" publish = true repository.workspace = true rust-version.workspace = true -version = "0.16.0-rc.1" +version = "0.16.0" [dependencies] -twilight-model = { default-features = false, optional = true, path = "../twilight-model", version = "0.16.0-rc.1" } -twilight-validate = { default-features = false, optional = true, path = "../twilight-validate", version = "0.16.0-rc.1" } +twilight-model = { default-features = false, optional = true, path = "../twilight-model", version = "0.16.0" } +twilight-validate = { default-features = false, optional = true, path = "../twilight-validate", version = "0.16.0" } [dev-dependencies] chrono = { default-features = false, features = ["std"], version = "0.4" } diff --git a/twilight-validate/Cargo.toml b/twilight-validate/Cargo.toml index 9964009e55a..cee0e8561cb 100644 --- a/twilight-validate/Cargo.toml +++ b/twilight-validate/Cargo.toml @@ -11,10 +11,10 @@ name = "twilight-validate" publish = true repository.workspace = true rust-version.workspace = true -version = "0.16.0-rc.1" +version = "0.16.0" [dependencies] -twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0-rc.1" } +twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0" } [dev-dependencies] static_assertions = { default-features = false, version = "1.1.0" } diff --git a/twilight/Cargo.toml b/twilight/Cargo.toml index b0549c933d6..2f5102b7227 100644 --- a/twilight/Cargo.toml +++ b/twilight/Cargo.toml @@ -10,21 +10,21 @@ name = "twilight" publish = true repository.workspace = true rust-version.workspace = true -version = "0.16.0-rc.1" +version = "0.16.0" [dev-dependencies] anyhow = { default-features = false, features = ["std"], version = "1" } tokio = { default-features = false, features = ["macros", "rt-multi-thread"], version = "1.0" } tracing = "0.1" tracing-subscriber = { default-features = false, features = ["fmt", "tracing-log"], version = "0.3" } -twilight-cache-inmemory = { default-features = false, path = "../twilight-cache-inmemory", version = "0.16.0-rc.1" } -twilight-gateway = { default-features = false, features = ["rustls-native-roots"], path = "../twilight-gateway", version = "0.16.0-rc.1" } -twilight-gateway-queue = { default-features = false, path = "../twilight-gateway-queue", version = "0.16.0-rc.1" } -twilight-http = { default-features = false, features = ["rustls-native-roots"], path = "../twilight-http", version = "0.16.0-rc.1" } -twilight-http-ratelimiting = { default-features = false, path = "../twilight-http-ratelimiting", version = "0.16.0-rc.1" } +twilight-cache-inmemory = { default-features = false, path = "../twilight-cache-inmemory", version = "0.16.0" } +twilight-gateway = { default-features = false, features = ["rustls-native-roots"], path = "../twilight-gateway", version = "0.16.0" } +twilight-gateway-queue = { default-features = false, path = "../twilight-gateway-queue", version = "0.16.0" } +twilight-http = { default-features = false, features = ["rustls-native-roots"], path = "../twilight-http", version = "0.16.0" } +twilight-http-ratelimiting = { default-features = false, path = "../twilight-http-ratelimiting", version = "0.16.0" } twilight-lavalink = { default-features = false, path = "../twilight-lavalink", version = "0.16.0-rc.1" } -twilight-mention = { default-features = false, path = "../twilight-mention", version = "0.16.0-rc.1" } -twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0-rc.1" } -twilight-standby = { default-features = false, path = "../twilight-standby", version = "0.16.0-rc.1" } -twilight-util = { default-features = false, path = "../twilight-util", version = "0.16.0-rc.1" } -twilight-validate = { default-features = false, path = "../twilight-validate", version = "0.16.0-rc.1" } +twilight-mention = { default-features = false, path = "../twilight-mention", version = "0.16.0" } +twilight-model = { default-features = false, path = "../twilight-model", version = "0.16.0" } +twilight-standby = { default-features = false, path = "../twilight-standby", version = "0.16.0" } +twilight-util = { default-features = false, path = "../twilight-util", version = "0.16.0" } +twilight-validate = { default-features = false, path = "../twilight-validate", version = "0.16.0" }