Skip to content

Commit

Permalink
Release 0.5.0 (#37)
Browse files Browse the repository at this point in the history
This PR releases SDK version 0.5.0, with the print schema and
capabitilies feature (#34)
  • Loading branch information
BenoitRanque authored Oct 29, 2024
1 parent 4d31de2 commit 1584077
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

35 changes: 27 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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" }
Expand All @@ -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"
Expand All @@ -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"


Expand Down

0 comments on commit 1584077

Please sign in to comment.