diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4de1230..4f2337f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "0.2.0", - "daemon": "0.2.0" + ".": "0.3.0", + "daemon": "0.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7635b3a..e31bcd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.3.0](https://github.com/distsystem/clipshare/compare/clipshare-v0.2.0...clipshare-v0.3.0) (2026-02-15) + + +### Features + +* **config:** use platformdirs for platform-specific paths ([811af16](https://github.com/distsystem/clipshare/commit/811af1660eafe5d2408e8a1ecef9be4795d03cb9)) +* **discovery:** replace UDP broadcast with mDNS service discovery ([0e9a072](https://github.com/distsystem/clipshare/commit/0e9a072233bd76b10d53f220429591a1a22841d7)) + ## [0.2.0](https://github.com/distsystem/clipshare/compare/clipshare-v0.1.0...clipshare-v0.2.0) (2026-02-15) diff --git a/daemon/CHANGELOG.md b/daemon/CHANGELOG.md index 856cf24..d134cf0 100644 --- a/daemon/CHANGELOG.md +++ b/daemon/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.0](https://github.com/distsystem/clipshare/compare/clipshare-daemon-v0.2.0...clipshare-daemon-v0.3.0) (2026-02-15) + + +### Features + +* **discovery:** replace UDP broadcast with mDNS service discovery ([0e9a072](https://github.com/distsystem/clipshare/commit/0e9a072233bd76b10d53f220429591a1a22841d7)) + ## [0.2.0](https://github.com/distsystem/clipshare/compare/clipshare-daemon-v0.1.0...clipshare-daemon-v0.2.0) (2026-02-15) diff --git a/daemon/Cargo.lock b/daemon/Cargo.lock index 0aea209..aed33f2 100644 --- a/daemon/Cargo.lock +++ b/daemon/Cargo.lock @@ -160,7 +160,7 @@ dependencies = [ [[package]] name = "clipshare-daemon" -version = "0.2.0" +version = "0.3.0" dependencies = [ "arboard", "base64", diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index 8e980ed..4943196 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clipshare-daemon" -version = "0.2.0" +version = "0.3.0" edition = "2021" [dependencies] diff --git a/pixi.toml b/pixi.toml index e9534df..ec16ae6 100644 --- a/pixi.toml +++ b/pixi.toml @@ -25,7 +25,7 @@ build = { features = ["build"], no-default-feature = true } # Python server package [package] name = "clipshare" -version = "0.2.0" # x-release-please-version +version = "0.3.0" # x-release-please-version [package.build] backend = { name = "pixi-build-python", version = "*", channels = ["https://prefix.dev/conda-forge"] } diff --git a/pyproject.toml b/pyproject.toml index 3152e5d..2bcd08a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "clipshare" -version = "0.2.0" +version = "0.3.0" requires-python = ">=3.11" dependencies = [ "fastapi",