From 7f8b259fcd4476fb75cea2fb5a979c706137e760 Mon Sep 17 00:00:00 2001 From: Benoit Ranque Date: Tue, 29 Oct 2024 13:52:52 -0400 Subject: [PATCH] Release 0.5.0 --- CHANGELOG.md | 2 ++ Cargo.lock | 4 ++-- Cargo.toml | 35 +++++++++++++++++++++++++++-------- 3 files changed, 31 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5447d1..60e04d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ This changelog documents the changes between release versions. Changes to be included in the next upcoming release +## [0.5.0] - 2024-10-29 + - add utilities to [implement PrintSchemaAndCapabilities](https://github.com/hasura/ndc-sdk-rs/pull/34). This splits the sdk into multiple crates to avoid bringing in openssl ## [0.4.0] - 2024-08-30 diff --git a/Cargo.lock b/Cargo.lock index 4e5f090..955460a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -980,7 +980,7 @@ dependencies = [ [[package]] name = "ndc-sdk" -version = "0.4.0" +version = "0.5.0" dependencies = [ "async-trait", "axum", @@ -1010,7 +1010,7 @@ dependencies = [ [[package]] name = "ndc-sdk-core" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 8696fc6..6d28ce4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,11 @@ [workspace] resolver = "2" -package.version = "0.4.0" +package.version = "0.5.0" package.edition = "2021" package.license = "Apache-2.0" -members = [ - "crates/*", -] +members = ["crates/*"] [workspace.dependencies] ndc-sdk-core = { path = "../sdk-core" } @@ -24,7 +22,13 @@ http = "0.2" mime = "0.3" opentelemetry = "0.22" opentelemetry-http = "0.11" -opentelemetry-otlp = { version = "0.15", features = ["reqwest-client", "gzip-tonic", "tls", "tls-roots", "http-proto"] } +opentelemetry-otlp = { version = "0.15", features = [ + "reqwest-client", + "gzip-tonic", + "tls", + "tls-roots", + "http-proto", +] } opentelemetry-semantic-conventions = "0.14" opentelemetry_sdk = { version = "0.22", features = ["rt-tokio"] } opentelemetry-zipkin = "0.20" @@ -33,12 +37,27 @@ reqwest = "0.11" serde = { version = "1", features = ["derive"] } serde_json = { version = "1", features = ["raw_value"] } thiserror = "1" -tokio = { version = "1", features = ["fs", "macros", "rt-multi-thread", "signal"] } +tokio = { version = "1", features = [ + "fs", + "macros", + "rt-multi-thread", + "signal", +] } tokio-test = "0.4" -tower-http = { version = "0.4", features = ["cors", "limit", "trace", "validate-request"] } +tower-http = { version = "0.4", features = [ + "cors", + "limit", + "trace", + "validate-request", +] } tracing = "0.1" tracing-opentelemetry = "0.23" -tracing-subscriber = { version = "0.3", default-features = false, features = ["ansi", "env-filter", "fmt", "json"] } +tracing-subscriber = { version = "0.3", default-features = false, features = [ + "ansi", + "env-filter", + "fmt", + "json", +] } url = "2"