Skip to content

Commit

Permalink
Merge pull request #8 from hasura/fix-capabilities-version
Browse files Browse the repository at this point in the history
Fix capabilities version

Merging without review due to the trivial nature of the change
  • Loading branch information
BenoitRanque authored Aug 2, 2024
2 parents 1cfb5d3 + a1f2d1d commit 2fd3a31
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3]

- Fix incorrect version being returned by capabilities

## [0.1.2]

- Fix issue where we looked for mutation fields in the query type, making all mutations fail
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
members = ["crates/ndc-graphql", "crates/ndc-graphql-cli", "crates/common"]
resolver = "2"

package.version = "0.1.2"
package.version = "0.1.3"
package.edition = "2021"
2 changes: 1 addition & 1 deletion crates/ndc-graphql/src/connector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl Connector for GraphQLConnector {

async fn get_capabilities() -> JsonResponse<models::CapabilitiesResponse> {
JsonResponse::Value(CapabilitiesResponse {
version: "^0.1.1".to_string(),
version: "0.1.4".to_string(),
capabilities: models::Capabilities {
query: models::QueryCapabilities {
aggregates: None,
Expand Down

0 comments on commit 2fd3a31

Please sign in to comment.