Skip to content

Commit ed420c3

Browse files
chore: release main (#116)
2 parents 05019b9 + 0eae73a commit ed420c3

11 files changed

Lines changed: 34 additions & 19 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.4.0"
2+
".": "0.5.0"
33
}

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [0.5.0](https://github.com/tableau/hyper-api-rust/compare/v0.4.0...v0.5.0) (2026-06-07)
4+
5+
6+
### Features
7+
8+
* **daemon:** identified PONG handshake + port-scan resolver groundwork ([751fd75](https://github.com/tableau/hyper-api-rust/commit/751fd7576f82aa22c4ac619bcf7a17b89f904bc0))
9+
* **daemon:** keep daemon resident by default; CLI auto-discovers port ([e123688](https://github.com/tableau/hyper-api-rust/commit/e12368808cc2c6e4f7de6a0a158c914e332299e2))
10+
* **daemon:** port-scanning locator + newer-client version takeover ([114a155](https://github.com/tableau/hyper-api-rust/commit/114a1551b040084142540c124de27cbdb23cfd59))
11+
* **mcp:** surface hyperd endpoint + daemon health port in status tool ([293a7a0](https://github.com/tableau/hyper-api-rust/commit/293a7a0fe860d5e3b2a69f7a52e89c2b0530374b))
12+
13+
14+
### Bug Fixes
15+
16+
* **mcp:** harden daemon discovery — identified PONG, port scanning, version takeover, resident-by-default ([#115](https://github.com/tableau/hyper-api-rust/issues/115)) ([05019b9](https://github.com/tableau/hyper-api-rust/commit/05019b958fc12f35efe13a47931a50d66496ad80))
17+
318
## [0.4.0](https://github.com/tableau/hyper-api-rust/compare/v0.3.1...v0.4.0) (2026-06-02)
419

520

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ exclude = ["hyperdb-compile-check"]
2626
# `cargo build --manifest-path hyperdb-compile-check/Cargo.toml`.
2727

2828
[workspace.package]
29-
version = "0.4.0"
29+
version = "0.5.0"
3030
edition = "2021"
3131
rust-version = "1.81"
3232
license = "MIT OR Apache-2.0"

hyperdb-api-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ serde_json = { workspace = true }
6565

6666
# Salesforce OAuth authentication (optional, via standalone crate)
6767
# x-release-please-start-version
68-
hyperdb-api-salesforce = { path = "../hyperdb-api-salesforce", version = "=0.4.0", optional = true }
68+
hyperdb-api-salesforce = { path = "../hyperdb-api-salesforce", version = "=0.5.0", optional = true }
6969
# x-release-please-end
7070

7171
# Arrow parsing for catalog operations (optional, used by authenticated_client)

hyperdb-api-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ syn = { version = "2", features = ["full"] }
2727
quote = "1"
2828
proc-macro2 = "1"
2929
# x-release-please-start-version
30-
hyperdb-compile-check = { path = "../hyperdb-compile-check", version = "=0.4.0", optional = true }
30+
hyperdb-compile-check = { path = "../hyperdb-compile-check", version = "=0.5.0", optional = true }
3131
# x-release-please-end
3232

3333
[dev-dependencies]

hyperdb-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ autobenches = false
1414

1515
[dependencies]
1616
# x-release-please-start-version
17-
hyperdb-api-core = { path = "../hyperdb-api-core", version = "=0.4.0" }
17+
hyperdb-api-core = { path = "../hyperdb-api-core", version = "=0.5.0" }
1818
# x-release-please-end
1919
# NOTE: hyperdb-api-derive is intentionally NOT a dep of hyperdb-api.
2020
# Adding it creates a cycle:

hyperdb-compile-check/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[package]
88
name = "hyperdb-compile-check"
99
# x-release-please-start-version
10-
version = "0.4.0"
10+
version = "0.5.0"
1111
# x-release-please-end
1212
edition = "2021"
1313
rust-version = "1.81"
@@ -25,7 +25,7 @@ categories = ["database", "development-tools"]
2525

2626
[dependencies]
2727
# x-release-please-start-version
28-
hyperdb-api = { path = "../hyperdb-api", version = "=0.4.0" }
28+
hyperdb-api = { path = "../hyperdb-api", version = "=0.5.0" }
2929
# x-release-please-end
3030
parking_lot = "0.12"
3131
tempfile = "3.20"

hyperdb-mcp/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to the `hyperdb-mcp` crate will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/),
66
and this project adheres to [Semantic Versioning](https://semver.org/).
77

8-
## [Unreleased]
8+
## [0.5.0] - 2026-06-07
99

1010
### Fixed
1111

hyperdb-mcp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ path = "src/main.rs"
2121

2222
[dependencies]
2323
# x-release-please-start-version
24-
hyperdb-api = { path = "../hyperdb-api", version = "=0.4.0" }
24+
hyperdb-api = { path = "../hyperdb-api", version = "=0.5.0" }
2525
# x-release-please-end
2626
rmcp = { version = "1.7", features = ["server", "transport-io"] }
2727
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-std", "signal", "time"] }

0 commit comments

Comments
 (0)