Skip to content

Commit

Permalink
Prepare 0.1.4 release (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
paf31 authored Jun 11, 2024
1 parent aae78ce commit 20172e3
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 9 deletions.
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
@@ -1,7 +1,7 @@
[workspace]
resolver = "2"

package.version = "0.1.3"
package.version = "0.1.4"

members = [
"ndc-models",
Expand Down
2 changes: 1 addition & 1 deletion ndc-models/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ndc-models"
description = "Protocol definitions for the Hasura NDC specification"
version = "0.1.3"
version = "0.1.4"
edition = "2021"

[lints]
Expand Down
2 changes: 1 addition & 1 deletion ndc-reference/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ndc-reference"
version = "0.1.3"
version = "0.1.4"
edition = "2021"

[lints]
Expand Down
2 changes: 1 addition & 1 deletion ndc-reference/bin/reference/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ async fn get_metrics(State(state): State<Arc<Mutex<AppState>>>) -> Result<String
// ANCHOR: capabilities
async fn get_capabilities() -> Json<models::CapabilitiesResponse> {
Json(models::CapabilitiesResponse {
version: "0.1.3".into(),
version: "0.1.4".into(),
capabilities: models::Capabilities {
query: models::QueryCapabilities {
aggregates: Some(LeafCapability {}),
Expand Down
2 changes: 1 addition & 1 deletion ndc-reference/tests/capabilities/expected.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.1.3",
"version": "0.1.4",
"capabilities": {
"query": {
"aggregates": {},
Expand Down
2 changes: 1 addition & 1 deletion ndc-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ndc-test"
description = "A tool to verify that a data connector is somewhat compatible with the specification"
version = "0.1.3"
version = "0.1.4"
edition = "2021"

[lints]
Expand Down
14 changes: 14 additions & 0 deletions specification/src/specification/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## `0.1.4`

### Specification

- Aggregates over nested fields

### `ndc-test`

- Replay test folders in alphabetical order

### Fixes

- Add `impl Default` for `NestedFieldCapabilities`

## `0.1.3`

### Specification
Expand Down

0 comments on commit 20172e3

Please sign in to comment.