diff --git a/.github/scripts/resolve-release-head.sh b/.github/scripts/resolve-release-head.sh index bc72e572..e3e4b016 100755 --- a/.github/scripts/resolve-release-head.sh +++ b/.github/scripts/resolve-release-head.sh @@ -43,7 +43,7 @@ if [[ "$release_sha" != "$workflow_sha" ]]; then while IFS= read -r path; do [[ -n "$path" ]] || continue case "$path" in - .github/actions/*|.github/scripts/*|.github/workflows/*|tools/policy/*|tools/release/*|tools/xtask/*|docs/maintainers/release-setup.md) + .github/actions/*|.github/scripts/*|.github/workflows/*|tools/dev/*|tools/policy/*|tools/release/*|tools/xtask/*|docs/maintainers/release-setup.md) ;; *) disallowed+=("$path") diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8da10ead..3dcc292a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -259,7 +259,16 @@ jobs: - name: Plan product releases id: release_plan run: | - tools/dev/bun.sh tools/release/release_plan.mjs --from-product-tags --include-current-tags --head-ref "$RELEASE_HEAD_SHA" --format github-output >> "$GITHUB_OUTPUT" + release_plan_args=( + --from-product-tags + --include-current-tags + --head-ref "$RELEASE_HEAD_SHA" + --format github-output + ) + if [[ "${{ inputs.operation }}" == "publish" ]]; then + release_plan_args+=(--include-current-version-tags) + fi + tools/dev/bun.sh tools/release/release_plan.mjs "${release_plan_args[@]}" >> "$GITHUB_OUTPUT" - name: No package release planned if: ${{ steps.release_plan.outputs.has_release_changes != 'true' }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 16904be5..582c57e2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,51 +1,51 @@ { - "src/runtimes/liboliphaunt/native": "0.0.0", - "src/sdks/rust": "0.0.0", - "src/runtimes/broker": "0.0.0", - "src/runtimes/node-direct": "0.0.0", - "src/sdks/swift": "0.0.0", - "src/sdks/kotlin": "0.0.0", - "src/sdks/react-native": "0.0.0", - "src/sdks/js": "0.0.0", - "src/extensions/contrib/amcheck": "0.0.0", - "src/extensions/contrib/auto_explain": "0.0.0", - "src/extensions/contrib/bloom": "0.0.0", - "src/extensions/contrib/btree_gin": "0.0.0", - "src/extensions/contrib/btree_gist": "0.0.0", - "src/extensions/contrib/citext": "0.0.0", - "src/extensions/contrib/cube": "0.0.0", - "src/extensions/contrib/dict_int": "0.0.0", - "src/extensions/contrib/dict_xsyn": "0.0.0", - "src/extensions/contrib/earthdistance": "0.0.0", - "src/extensions/contrib/file_fdw": "0.0.0", - "src/extensions/contrib/fuzzystrmatch": "0.0.0", - "src/extensions/contrib/hstore": "0.0.0", - "src/extensions/contrib/intarray": "0.0.0", - "src/extensions/contrib/isn": "0.0.0", - "src/extensions/contrib/lo": "0.0.0", - "src/extensions/contrib/ltree": "0.0.0", - "src/extensions/contrib/pageinspect": "0.0.0", - "src/extensions/contrib/pg_buffercache": "0.0.0", - "src/extensions/contrib/pg_freespacemap": "0.0.0", - "src/extensions/contrib/pg_surgery": "0.0.0", - "src/extensions/contrib/pg_trgm": "0.0.0", - "src/extensions/contrib/pg_visibility": "0.0.0", - "src/extensions/contrib/pg_walinspect": "0.0.0", - "src/extensions/contrib/pgcrypto": "0.0.0", - "src/extensions/contrib/seg": "0.0.0", - "src/extensions/contrib/tablefunc": "0.0.0", - "src/extensions/contrib/tcn": "0.0.0", - "src/extensions/contrib/tsm_system_rows": "0.0.0", - "src/extensions/contrib/tsm_system_time": "0.0.0", - "src/extensions/contrib/unaccent": "0.0.0", - "src/extensions/contrib/uuid_ossp": "0.0.0", - "src/extensions/external/pg_hashids": "0.0.0", - "src/extensions/external/pg_ivm": "0.0.0", - "src/extensions/external/pg_textsearch": "0.0.0", - "src/extensions/external/pg_uuidv7": "0.0.0", - "src/extensions/external/pgtap": "0.0.0", - "src/extensions/external/postgis": "0.0.0", - "src/extensions/external/vector": "0.0.0", - "src/runtimes/liboliphaunt/wasix": "0.0.0", - "src/bindings/wasix-rust/crates/oliphaunt-wasix": "0.0.0" + "src/runtimes/liboliphaunt/native": "0.1.0", + "src/sdks/rust": "0.1.0", + "src/runtimes/broker": "0.1.0", + "src/runtimes/node-direct": "0.1.0", + "src/sdks/swift": "0.1.0", + "src/sdks/kotlin": "0.1.0", + "src/sdks/react-native": "0.1.0", + "src/sdks/js": "0.1.0", + "src/extensions/contrib/amcheck": "0.1.0", + "src/extensions/contrib/auto_explain": "0.1.0", + "src/extensions/contrib/bloom": "0.1.0", + "src/extensions/contrib/btree_gin": "0.1.0", + "src/extensions/contrib/btree_gist": "0.1.0", + "src/extensions/contrib/citext": "0.1.0", + "src/extensions/contrib/cube": "0.1.0", + "src/extensions/contrib/dict_int": "0.1.0", + "src/extensions/contrib/dict_xsyn": "0.1.0", + "src/extensions/contrib/earthdistance": "0.1.0", + "src/extensions/contrib/file_fdw": "0.1.0", + "src/extensions/contrib/fuzzystrmatch": "0.1.0", + "src/extensions/contrib/hstore": "0.1.0", + "src/extensions/contrib/intarray": "0.1.0", + "src/extensions/contrib/isn": "0.1.0", + "src/extensions/contrib/lo": "0.1.0", + "src/extensions/contrib/ltree": "0.1.0", + "src/extensions/contrib/pageinspect": "0.1.0", + "src/extensions/contrib/pg_buffercache": "0.1.0", + "src/extensions/contrib/pg_freespacemap": "0.1.0", + "src/extensions/contrib/pg_surgery": "0.1.0", + "src/extensions/contrib/pg_trgm": "0.1.0", + "src/extensions/contrib/pg_visibility": "0.1.0", + "src/extensions/contrib/pg_walinspect": "0.1.0", + "src/extensions/contrib/pgcrypto": "0.1.0", + "src/extensions/contrib/seg": "0.1.0", + "src/extensions/contrib/tablefunc": "0.1.0", + "src/extensions/contrib/tcn": "0.1.0", + "src/extensions/contrib/tsm_system_rows": "0.1.0", + "src/extensions/contrib/tsm_system_time": "0.1.0", + "src/extensions/contrib/unaccent": "0.1.0", + "src/extensions/contrib/uuid_ossp": "0.1.0", + "src/extensions/external/pg_hashids": "0.1.0", + "src/extensions/external/pg_ivm": "0.1.0", + "src/extensions/external/pg_textsearch": "0.1.0", + "src/extensions/external/pg_uuidv7": "0.1.0", + "src/extensions/external/pgtap": "0.1.0", + "src/extensions/external/postgis": "0.1.0", + "src/extensions/external/vector": "0.1.0", + "src/runtimes/liboliphaunt/wasix": "0.1.0", + "src/bindings/wasix-rust/crates/oliphaunt-wasix": "0.1.0" } diff --git a/Cargo.lock b/Cargo.lock index 69de097f..349f1558 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1856,7 +1856,7 @@ dependencies = [ [[package]] name = "liboliphaunt-wasix-aot-aarch64-apple-darwin" -version = "0.0.0" +version = "0.1.0" dependencies = [ "serde_json", "sha2 0.10.9", @@ -1864,7 +1864,7 @@ dependencies = [ [[package]] name = "liboliphaunt-wasix-aot-aarch64-unknown-linux-gnu" -version = "0.0.0" +version = "0.1.0" dependencies = [ "serde_json", "sha2 0.10.9", @@ -1872,7 +1872,7 @@ dependencies = [ [[package]] name = "liboliphaunt-wasix-aot-x86_64-pc-windows-msvc" -version = "0.0.0" +version = "0.1.0" dependencies = [ "serde_json", "sha2 0.10.9", @@ -1880,7 +1880,7 @@ dependencies = [ [[package]] name = "liboliphaunt-wasix-aot-x86_64-unknown-linux-gnu" -version = "0.0.0" +version = "0.1.0" dependencies = [ "serde_json", "sha2 0.10.9", @@ -1888,7 +1888,7 @@ dependencies = [ [[package]] name = "liboliphaunt-wasix-portable" -version = "0.0.0" +version = "0.1.0" dependencies = [ "serde", "serde_json", @@ -2266,7 +2266,7 @@ dependencies = [ [[package]] name = "oliphaunt" -version = "0.0.0" +version = "0.1.0" dependencies = [ "crossbeam-channel", "ed25519-dalek", @@ -2290,14 +2290,14 @@ dependencies = [ [[package]] name = "oliphaunt-broker" -version = "0.0.0" +version = "0.1.0" dependencies = [ "oliphaunt", ] [[package]] name = "oliphaunt-build" -version = "0.0.0" +version = "0.1.0" dependencies = [ "serde", "sha2 0.10.9", @@ -2334,11 +2334,11 @@ dependencies = [ [[package]] name = "oliphaunt-tools" -version = "0.0.0" +version = "0.1.0" [[package]] name = "oliphaunt-wasix" -version = "0.0.0" +version = "0.1.0" dependencies = [ "anyhow", "async-trait", @@ -2378,14 +2378,14 @@ dependencies = [ [[package]] name = "oliphaunt-wasix-tools" -version = "0.0.0" +version = "0.1.0" dependencies = [ "sha2 0.10.9", ] [[package]] name = "oliphaunt-wasix-tools-aot-aarch64-apple-darwin" -version = "0.0.0" +version = "0.1.0" dependencies = [ "serde_json", "sha2 0.10.9", @@ -2393,7 +2393,7 @@ dependencies = [ [[package]] name = "oliphaunt-wasix-tools-aot-aarch64-unknown-linux-gnu" -version = "0.0.0" +version = "0.1.0" dependencies = [ "serde_json", "sha2 0.10.9", @@ -2401,7 +2401,7 @@ dependencies = [ [[package]] name = "oliphaunt-wasix-tools-aot-x86_64-pc-windows-msvc" -version = "0.0.0" +version = "0.1.0" dependencies = [ "serde_json", "sha2 0.10.9", @@ -2409,7 +2409,7 @@ dependencies = [ [[package]] name = "oliphaunt-wasix-tools-aot-x86_64-unknown-linux-gnu" -version = "0.0.0" +version = "0.1.0" dependencies = [ "serde_json", "sha2 0.10.9", diff --git a/docs/maintainers/release-setup.md b/docs/maintainers/release-setup.md index 827852a4..9107057d 100644 --- a/docs/maintainers/release-setup.md +++ b/docs/maintainers/release-setup.md @@ -89,19 +89,24 @@ tools/dev/bun.sh tools/release/release-check.mjs ``` For normal releases, leave the `Release` workflow's `release_commit` input -empty. If a publish or dry-run fails and a later `main` commit only fixes -release tooling, rerun `Release` from current `main` with `release_commit` set -to the full 40-character SHA that should be published. The workflow still runs -the latest release scripts, but it plans the release, selects CI artifacts, -checks product tags, and verifies publication against that selected release -commit. During `publish`, the workflow creates a temporary release-please target -branch at the selected commit so product tags and GitHub releases point at the -published source commit, then removes that temporary branch. +empty. If release-please has already created product tags but a later publish +step failed, rerun `Release` from current `main`; `publish` keeps selecting the +current-version product tags so the idempotent publish steps can complete +missing assets and registry outputs. If a publish or dry-run fails and a later +`main` commit only fixes release tooling, rerun `Release` from current `main` +with `release_commit` set to the full 40-character SHA that should be +published. The workflow still runs the latest release scripts, but it plans the +release, selects CI artifacts, checks product tags, and verifies publication +against that selected release commit. During `publish`, the workflow creates a +temporary release-please target branch at the selected commit so product tags +and GitHub releases point at the published source commit, then removes that +temporary branch. Do not use `release_commit` to skip CI for product source, version, changelog, or release metadata changes. The workflow rejects lagging release commits unless the intervening files are release tooling such as `.github/workflows/`, -`.github/scripts/`, `tools/release/`, `tools/policy/`, or `tools/xtask/`. +`.github/scripts/`, `tools/dev/`, `tools/release/`, `tools/policy/`, or +`tools/xtask/`. ## crates.io diff --git a/examples/electron/package.json b/examples/electron/package.json index d91d3f9a..2f4eb90a 100644 --- a/examples/electron/package.json +++ b/examples/electron/package.json @@ -9,10 +9,10 @@ "dev:renderer": "vite" }, "dependencies": { - "@oliphaunt/extension-hstore": "0.0.0", - "@oliphaunt/extension-pg-trgm": "0.0.0", - "@oliphaunt/extension-unaccent": "0.0.0", - "@oliphaunt/ts": "0.0.0", + "@oliphaunt/extension-hstore": "0.1.0", + "@oliphaunt/extension-pg-trgm": "0.1.0", + "@oliphaunt/extension-unaccent": "0.1.0", + "@oliphaunt/ts": "0.1.0", "kysely": "^0.29.2", "pg": "^8.16.3" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index efeeb438..636631ec 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -180,52 +180,52 @@ importers: version: 4.1.8(@types/node@24.12.4)(@vitest/coverage-v8@4.1.8)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.48.0)(tsx@4.22.3)(yaml@2.9.0) optionalDependencies: '@oliphaunt/broker-darwin-arm64': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/broker/packages/darwin-arm64 '@oliphaunt/broker-linux-arm64-gnu': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/broker/packages/linux-arm64-gnu '@oliphaunt/broker-linux-x64-gnu': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/broker/packages/linux-x64-gnu '@oliphaunt/broker-win32-x64-msvc': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/broker/packages/win32-x64-msvc '@oliphaunt/liboliphaunt-darwin-arm64': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/liboliphaunt/native/packages/darwin-arm64 '@oliphaunt/liboliphaunt-linux-arm64-gnu': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/liboliphaunt/native/packages/linux-arm64-gnu '@oliphaunt/liboliphaunt-linux-x64-gnu': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/liboliphaunt/native/packages/linux-x64-gnu '@oliphaunt/liboliphaunt-win32-x64-msvc': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/liboliphaunt/native/packages/win32-x64-msvc '@oliphaunt/node-direct-darwin-arm64': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/node-direct/packages/darwin-arm64 '@oliphaunt/node-direct-linux-arm64-gnu': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/node-direct/packages/linux-arm64-gnu '@oliphaunt/node-direct-linux-x64-gnu': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/node-direct/packages/linux-x64-gnu '@oliphaunt/node-direct-win32-x64-msvc': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/node-direct/packages/win32-x64-msvc '@oliphaunt/tools-darwin-arm64': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/liboliphaunt/native/tools-packages/darwin-arm64 '@oliphaunt/tools-linux-arm64-gnu': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/liboliphaunt/native/tools-packages/linux-arm64-gnu '@oliphaunt/tools-linux-x64-gnu': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/liboliphaunt/native/tools-packages/linux-x64-gnu '@oliphaunt/tools-win32-x64-msvc': - specifier: workspace:0.0.0 + specifier: workspace:0.1.0 version: link:../../runtimes/liboliphaunt/native/tools-packages/win32-x64-msvc src/sdks/react-native: diff --git a/src/bindings/wasix-rust/crates/oliphaunt-wasix/CHANGELOG.md b/src/bindings/wasix-rust/crates/oliphaunt-wasix/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/bindings/wasix-rust/crates/oliphaunt-wasix/CHANGELOG.md +++ b/src/bindings/wasix-rust/crates/oliphaunt-wasix/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/bindings/wasix-rust/crates/oliphaunt-wasix/Cargo.toml b/src/bindings/wasix-rust/crates/oliphaunt-wasix/Cargo.toml index 548edea3..5657f7bb 100644 --- a/src/bindings/wasix-rust/crates/oliphaunt-wasix/Cargo.toml +++ b/src/bindings/wasix-rust/crates/oliphaunt-wasix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-wasix" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Embedded Postgres for Rust tests and local apps. No Docker, works with SQLx and any Postgres client." @@ -95,8 +95,8 @@ hex = "0.4" sha2 = "0.10" dunce = "1" filetime = "0.2" -liboliphaunt-wasix-portable = { version = "=0.0.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/assets" } -oliphaunt-wasix-tools = { version = "=0.0.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/tools", optional = true } +liboliphaunt-wasix-portable = { version = "=0.1.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/assets" } +oliphaunt-wasix-tools = { version = "=0.1.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/tools", optional = true } oliphaunt-icu = { version = "=0.0.0", path = "../../../../runtimes/liboliphaunt/icu", optional = true } tokio = { version = "1", features = ["io-util", "rt-multi-thread"] } wasmer = { version = "7.2.0-alpha.3", default-features = false, features = [ @@ -116,20 +116,20 @@ wasmer-wasix = { version = "0.702.0-alpha.3", default-features = false, features webc = "=12.0.0" [target.'cfg(all(target_os = "macos", target_arch = "aarch64"))'.dependencies] -liboliphaunt-wasix-aot-aarch64-apple-darwin = { version = "=0.0.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/aot/aarch64-apple-darwin" } -oliphaunt-wasix-tools-aot-aarch64-apple-darwin = { version = "=0.0.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/tools-aot/aarch64-apple-darwin", optional = true } +liboliphaunt-wasix-aot-aarch64-apple-darwin = { version = "=0.1.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/aot/aarch64-apple-darwin" } +oliphaunt-wasix-tools-aot-aarch64-apple-darwin = { version = "=0.1.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/tools-aot/aarch64-apple-darwin", optional = true } [target.'cfg(all(target_os = "linux", target_arch = "x86_64", target_env = "gnu"))'.dependencies] -liboliphaunt-wasix-aot-x86_64-unknown-linux-gnu = { version = "=0.0.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/aot/x86_64-unknown-linux-gnu" } -oliphaunt-wasix-tools-aot-x86_64-unknown-linux-gnu = { version = "=0.0.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/tools-aot/x86_64-unknown-linux-gnu", optional = true } +liboliphaunt-wasix-aot-x86_64-unknown-linux-gnu = { version = "=0.1.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/aot/x86_64-unknown-linux-gnu" } +oliphaunt-wasix-tools-aot-x86_64-unknown-linux-gnu = { version = "=0.1.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/tools-aot/x86_64-unknown-linux-gnu", optional = true } [target.'cfg(all(target_os = "linux", target_arch = "aarch64", target_env = "gnu"))'.dependencies] -liboliphaunt-wasix-aot-aarch64-unknown-linux-gnu = { version = "=0.0.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/aot/aarch64-unknown-linux-gnu" } -oliphaunt-wasix-tools-aot-aarch64-unknown-linux-gnu = { version = "=0.0.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/tools-aot/aarch64-unknown-linux-gnu", optional = true } +liboliphaunt-wasix-aot-aarch64-unknown-linux-gnu = { version = "=0.1.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/aot/aarch64-unknown-linux-gnu" } +oliphaunt-wasix-tools-aot-aarch64-unknown-linux-gnu = { version = "=0.1.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/tools-aot/aarch64-unknown-linux-gnu", optional = true } [target.'cfg(all(target_os = "windows", target_arch = "x86_64", target_env = "msvc"))'.dependencies] -liboliphaunt-wasix-aot-x86_64-pc-windows-msvc = { version = "=0.0.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/aot/x86_64-pc-windows-msvc" } -oliphaunt-wasix-tools-aot-x86_64-pc-windows-msvc = { version = "=0.0.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/tools-aot/x86_64-pc-windows-msvc", optional = true } +liboliphaunt-wasix-aot-x86_64-pc-windows-msvc = { version = "=0.1.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/aot/x86_64-pc-windows-msvc" } +oliphaunt-wasix-tools-aot-x86_64-pc-windows-msvc = { version = "=0.1.0", path = "../../../../runtimes/liboliphaunt/wasix/crates/tools-aot/x86_64-pc-windows-msvc", optional = true } [dev-dependencies] sqlx = { version = "0.8", default-features = false, features = [ diff --git a/src/extensions/contrib/amcheck/CHANGELOG.md b/src/extensions/contrib/amcheck/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/amcheck/CHANGELOG.md +++ b/src/extensions/contrib/amcheck/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/amcheck/VERSION b/src/extensions/contrib/amcheck/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/amcheck/VERSION +++ b/src/extensions/contrib/amcheck/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/amcheck/release.toml b/src/extensions/contrib/amcheck/release.toml index 337ff22e..9c9247ba 100644 --- a/src/extensions/contrib/amcheck/release.toml +++ b/src/extensions/contrib/amcheck/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-amcheck-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/amcheck/release.toml" diff --git a/src/extensions/contrib/auto_explain/CHANGELOG.md b/src/extensions/contrib/auto_explain/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/auto_explain/CHANGELOG.md +++ b/src/extensions/contrib/auto_explain/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/auto_explain/VERSION b/src/extensions/contrib/auto_explain/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/auto_explain/VERSION +++ b/src/extensions/contrib/auto_explain/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/auto_explain/release.toml b/src/extensions/contrib/auto_explain/release.toml index 9a29e690..43ff3f47 100644 --- a/src/extensions/contrib/auto_explain/release.toml +++ b/src/extensions/contrib/auto_explain/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-auto-explain-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/auto_explain/release.toml" diff --git a/src/extensions/contrib/bloom/CHANGELOG.md b/src/extensions/contrib/bloom/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/bloom/CHANGELOG.md +++ b/src/extensions/contrib/bloom/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/bloom/VERSION b/src/extensions/contrib/bloom/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/bloom/VERSION +++ b/src/extensions/contrib/bloom/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/bloom/release.toml b/src/extensions/contrib/bloom/release.toml index 8332ecaa..af615dc2 100644 --- a/src/extensions/contrib/bloom/release.toml +++ b/src/extensions/contrib/bloom/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-bloom-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/bloom/release.toml" diff --git a/src/extensions/contrib/btree_gin/CHANGELOG.md b/src/extensions/contrib/btree_gin/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/btree_gin/CHANGELOG.md +++ b/src/extensions/contrib/btree_gin/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/btree_gin/VERSION b/src/extensions/contrib/btree_gin/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/btree_gin/VERSION +++ b/src/extensions/contrib/btree_gin/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/btree_gin/release.toml b/src/extensions/contrib/btree_gin/release.toml index c4daa1d3..b635f74c 100644 --- a/src/extensions/contrib/btree_gin/release.toml +++ b/src/extensions/contrib/btree_gin/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-btree-gin-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/btree_gin/release.toml" diff --git a/src/extensions/contrib/btree_gist/CHANGELOG.md b/src/extensions/contrib/btree_gist/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/btree_gist/CHANGELOG.md +++ b/src/extensions/contrib/btree_gist/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/btree_gist/VERSION b/src/extensions/contrib/btree_gist/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/btree_gist/VERSION +++ b/src/extensions/contrib/btree_gist/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/btree_gist/release.toml b/src/extensions/contrib/btree_gist/release.toml index 9b82506a..7672013b 100644 --- a/src/extensions/contrib/btree_gist/release.toml +++ b/src/extensions/contrib/btree_gist/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-btree-gist-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/btree_gist/release.toml" diff --git a/src/extensions/contrib/citext/CHANGELOG.md b/src/extensions/contrib/citext/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/citext/CHANGELOG.md +++ b/src/extensions/contrib/citext/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/citext/VERSION b/src/extensions/contrib/citext/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/citext/VERSION +++ b/src/extensions/contrib/citext/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/citext/release.toml b/src/extensions/contrib/citext/release.toml index b8e371b2..7013aede 100644 --- a/src/extensions/contrib/citext/release.toml +++ b/src/extensions/contrib/citext/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-citext-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/citext/release.toml" diff --git a/src/extensions/contrib/cube/CHANGELOG.md b/src/extensions/contrib/cube/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/cube/CHANGELOG.md +++ b/src/extensions/contrib/cube/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/cube/VERSION b/src/extensions/contrib/cube/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/cube/VERSION +++ b/src/extensions/contrib/cube/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/cube/release.toml b/src/extensions/contrib/cube/release.toml index ffee16f3..419ab737 100644 --- a/src/extensions/contrib/cube/release.toml +++ b/src/extensions/contrib/cube/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-cube-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/cube/release.toml" diff --git a/src/extensions/contrib/dict_int/CHANGELOG.md b/src/extensions/contrib/dict_int/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/dict_int/CHANGELOG.md +++ b/src/extensions/contrib/dict_int/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/dict_int/VERSION b/src/extensions/contrib/dict_int/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/dict_int/VERSION +++ b/src/extensions/contrib/dict_int/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/dict_int/release.toml b/src/extensions/contrib/dict_int/release.toml index bd39e715..6a41113e 100644 --- a/src/extensions/contrib/dict_int/release.toml +++ b/src/extensions/contrib/dict_int/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-dict-int-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/dict_int/release.toml" diff --git a/src/extensions/contrib/dict_xsyn/CHANGELOG.md b/src/extensions/contrib/dict_xsyn/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/dict_xsyn/CHANGELOG.md +++ b/src/extensions/contrib/dict_xsyn/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/dict_xsyn/VERSION b/src/extensions/contrib/dict_xsyn/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/dict_xsyn/VERSION +++ b/src/extensions/contrib/dict_xsyn/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/dict_xsyn/release.toml b/src/extensions/contrib/dict_xsyn/release.toml index 2a2596ae..22f99d0f 100644 --- a/src/extensions/contrib/dict_xsyn/release.toml +++ b/src/extensions/contrib/dict_xsyn/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-dict-xsyn-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/dict_xsyn/release.toml" diff --git a/src/extensions/contrib/earthdistance/CHANGELOG.md b/src/extensions/contrib/earthdistance/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/earthdistance/CHANGELOG.md +++ b/src/extensions/contrib/earthdistance/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/earthdistance/VERSION b/src/extensions/contrib/earthdistance/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/earthdistance/VERSION +++ b/src/extensions/contrib/earthdistance/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/earthdistance/release.toml b/src/extensions/contrib/earthdistance/release.toml index 4aa996b4..c1212055 100644 --- a/src/extensions/contrib/earthdistance/release.toml +++ b/src/extensions/contrib/earthdistance/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-earthdistance-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/earthdistance/release.toml" diff --git a/src/extensions/contrib/file_fdw/CHANGELOG.md b/src/extensions/contrib/file_fdw/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/file_fdw/CHANGELOG.md +++ b/src/extensions/contrib/file_fdw/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/file_fdw/VERSION b/src/extensions/contrib/file_fdw/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/file_fdw/VERSION +++ b/src/extensions/contrib/file_fdw/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/file_fdw/release.toml b/src/extensions/contrib/file_fdw/release.toml index 7b5cb7f3..dc7cd7f4 100644 --- a/src/extensions/contrib/file_fdw/release.toml +++ b/src/extensions/contrib/file_fdw/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-file-fdw-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/file_fdw/release.toml" diff --git a/src/extensions/contrib/fuzzystrmatch/CHANGELOG.md b/src/extensions/contrib/fuzzystrmatch/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/fuzzystrmatch/CHANGELOG.md +++ b/src/extensions/contrib/fuzzystrmatch/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/fuzzystrmatch/VERSION b/src/extensions/contrib/fuzzystrmatch/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/fuzzystrmatch/VERSION +++ b/src/extensions/contrib/fuzzystrmatch/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/fuzzystrmatch/release.toml b/src/extensions/contrib/fuzzystrmatch/release.toml index c15adf7c..44c35438 100644 --- a/src/extensions/contrib/fuzzystrmatch/release.toml +++ b/src/extensions/contrib/fuzzystrmatch/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-fuzzystrmatch-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/fuzzystrmatch/release.toml" diff --git a/src/extensions/contrib/hstore/CHANGELOG.md b/src/extensions/contrib/hstore/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/hstore/CHANGELOG.md +++ b/src/extensions/contrib/hstore/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/hstore/VERSION b/src/extensions/contrib/hstore/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/hstore/VERSION +++ b/src/extensions/contrib/hstore/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/hstore/release.toml b/src/extensions/contrib/hstore/release.toml index 5f32ffaa..b01c47ff 100644 --- a/src/extensions/contrib/hstore/release.toml +++ b/src/extensions/contrib/hstore/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-hstore-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/hstore/release.toml" diff --git a/src/extensions/contrib/intarray/CHANGELOG.md b/src/extensions/contrib/intarray/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/intarray/CHANGELOG.md +++ b/src/extensions/contrib/intarray/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/intarray/VERSION b/src/extensions/contrib/intarray/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/intarray/VERSION +++ b/src/extensions/contrib/intarray/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/intarray/release.toml b/src/extensions/contrib/intarray/release.toml index 5d377fd5..88869f05 100644 --- a/src/extensions/contrib/intarray/release.toml +++ b/src/extensions/contrib/intarray/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-intarray-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/intarray/release.toml" diff --git a/src/extensions/contrib/isn/CHANGELOG.md b/src/extensions/contrib/isn/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/isn/CHANGELOG.md +++ b/src/extensions/contrib/isn/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/isn/VERSION b/src/extensions/contrib/isn/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/isn/VERSION +++ b/src/extensions/contrib/isn/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/isn/release.toml b/src/extensions/contrib/isn/release.toml index e1992960..58d0e685 100644 --- a/src/extensions/contrib/isn/release.toml +++ b/src/extensions/contrib/isn/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-isn-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/isn/release.toml" diff --git a/src/extensions/contrib/lo/CHANGELOG.md b/src/extensions/contrib/lo/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/lo/CHANGELOG.md +++ b/src/extensions/contrib/lo/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/lo/VERSION b/src/extensions/contrib/lo/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/lo/VERSION +++ b/src/extensions/contrib/lo/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/lo/release.toml b/src/extensions/contrib/lo/release.toml index 5a4fe285..57e989b8 100644 --- a/src/extensions/contrib/lo/release.toml +++ b/src/extensions/contrib/lo/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-lo-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/lo/release.toml" diff --git a/src/extensions/contrib/ltree/CHANGELOG.md b/src/extensions/contrib/ltree/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/ltree/CHANGELOG.md +++ b/src/extensions/contrib/ltree/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/ltree/VERSION b/src/extensions/contrib/ltree/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/ltree/VERSION +++ b/src/extensions/contrib/ltree/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/ltree/release.toml b/src/extensions/contrib/ltree/release.toml index 567db8a8..162078c4 100644 --- a/src/extensions/contrib/ltree/release.toml +++ b/src/extensions/contrib/ltree/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-ltree-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/ltree/release.toml" diff --git a/src/extensions/contrib/pageinspect/CHANGELOG.md b/src/extensions/contrib/pageinspect/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/pageinspect/CHANGELOG.md +++ b/src/extensions/contrib/pageinspect/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/pageinspect/VERSION b/src/extensions/contrib/pageinspect/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/pageinspect/VERSION +++ b/src/extensions/contrib/pageinspect/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/pageinspect/release.toml b/src/extensions/contrib/pageinspect/release.toml index 508c45a2..74d31a35 100644 --- a/src/extensions/contrib/pageinspect/release.toml +++ b/src/extensions/contrib/pageinspect/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pageinspect-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/pageinspect/release.toml" diff --git a/src/extensions/contrib/pg_buffercache/CHANGELOG.md b/src/extensions/contrib/pg_buffercache/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/pg_buffercache/CHANGELOG.md +++ b/src/extensions/contrib/pg_buffercache/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/pg_buffercache/VERSION b/src/extensions/contrib/pg_buffercache/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/pg_buffercache/VERSION +++ b/src/extensions/contrib/pg_buffercache/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/pg_buffercache/release.toml b/src/extensions/contrib/pg_buffercache/release.toml index 47503524..1c9a5947 100644 --- a/src/extensions/contrib/pg_buffercache/release.toml +++ b/src/extensions/contrib/pg_buffercache/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pg-buffercache-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/pg_buffercache/release.toml" diff --git a/src/extensions/contrib/pg_freespacemap/CHANGELOG.md b/src/extensions/contrib/pg_freespacemap/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/pg_freespacemap/CHANGELOG.md +++ b/src/extensions/contrib/pg_freespacemap/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/pg_freespacemap/VERSION b/src/extensions/contrib/pg_freespacemap/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/pg_freespacemap/VERSION +++ b/src/extensions/contrib/pg_freespacemap/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/pg_freespacemap/release.toml b/src/extensions/contrib/pg_freespacemap/release.toml index 28074cc2..5b458010 100644 --- a/src/extensions/contrib/pg_freespacemap/release.toml +++ b/src/extensions/contrib/pg_freespacemap/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pg-freespacemap-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/pg_freespacemap/release.toml" diff --git a/src/extensions/contrib/pg_surgery/CHANGELOG.md b/src/extensions/contrib/pg_surgery/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/pg_surgery/CHANGELOG.md +++ b/src/extensions/contrib/pg_surgery/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/pg_surgery/VERSION b/src/extensions/contrib/pg_surgery/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/pg_surgery/VERSION +++ b/src/extensions/contrib/pg_surgery/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/pg_surgery/release.toml b/src/extensions/contrib/pg_surgery/release.toml index b09edc9b..8fc233ac 100644 --- a/src/extensions/contrib/pg_surgery/release.toml +++ b/src/extensions/contrib/pg_surgery/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pg-surgery-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/pg_surgery/release.toml" diff --git a/src/extensions/contrib/pg_trgm/CHANGELOG.md b/src/extensions/contrib/pg_trgm/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/pg_trgm/CHANGELOG.md +++ b/src/extensions/contrib/pg_trgm/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/pg_trgm/VERSION b/src/extensions/contrib/pg_trgm/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/pg_trgm/VERSION +++ b/src/extensions/contrib/pg_trgm/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/pg_trgm/release.toml b/src/extensions/contrib/pg_trgm/release.toml index dead8821..d6f3d942 100644 --- a/src/extensions/contrib/pg_trgm/release.toml +++ b/src/extensions/contrib/pg_trgm/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pg-trgm-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/pg_trgm/release.toml" diff --git a/src/extensions/contrib/pg_visibility/CHANGELOG.md b/src/extensions/contrib/pg_visibility/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/pg_visibility/CHANGELOG.md +++ b/src/extensions/contrib/pg_visibility/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/pg_visibility/VERSION b/src/extensions/contrib/pg_visibility/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/pg_visibility/VERSION +++ b/src/extensions/contrib/pg_visibility/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/pg_visibility/release.toml b/src/extensions/contrib/pg_visibility/release.toml index e69b7671..2cbe4296 100644 --- a/src/extensions/contrib/pg_visibility/release.toml +++ b/src/extensions/contrib/pg_visibility/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pg-visibility-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/pg_visibility/release.toml" diff --git a/src/extensions/contrib/pg_walinspect/CHANGELOG.md b/src/extensions/contrib/pg_walinspect/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/pg_walinspect/CHANGELOG.md +++ b/src/extensions/contrib/pg_walinspect/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/pg_walinspect/VERSION b/src/extensions/contrib/pg_walinspect/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/pg_walinspect/VERSION +++ b/src/extensions/contrib/pg_walinspect/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/pg_walinspect/release.toml b/src/extensions/contrib/pg_walinspect/release.toml index 34514af3..cdf8f130 100644 --- a/src/extensions/contrib/pg_walinspect/release.toml +++ b/src/extensions/contrib/pg_walinspect/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pg-walinspect-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/pg_walinspect/release.toml" diff --git a/src/extensions/contrib/pgcrypto/CHANGELOG.md b/src/extensions/contrib/pgcrypto/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/pgcrypto/CHANGELOG.md +++ b/src/extensions/contrib/pgcrypto/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/pgcrypto/VERSION b/src/extensions/contrib/pgcrypto/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/pgcrypto/VERSION +++ b/src/extensions/contrib/pgcrypto/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/pgcrypto/release.toml b/src/extensions/contrib/pgcrypto/release.toml index 26681251..bbaf1f03 100644 --- a/src/extensions/contrib/pgcrypto/release.toml +++ b/src/extensions/contrib/pgcrypto/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pgcrypto-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/pgcrypto/release.toml" diff --git a/src/extensions/contrib/seg/CHANGELOG.md b/src/extensions/contrib/seg/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/seg/CHANGELOG.md +++ b/src/extensions/contrib/seg/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/seg/VERSION b/src/extensions/contrib/seg/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/seg/VERSION +++ b/src/extensions/contrib/seg/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/seg/release.toml b/src/extensions/contrib/seg/release.toml index 3ab748c4..177d9425 100644 --- a/src/extensions/contrib/seg/release.toml +++ b/src/extensions/contrib/seg/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-seg-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/seg/release.toml" diff --git a/src/extensions/contrib/tablefunc/CHANGELOG.md b/src/extensions/contrib/tablefunc/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/tablefunc/CHANGELOG.md +++ b/src/extensions/contrib/tablefunc/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/tablefunc/VERSION b/src/extensions/contrib/tablefunc/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/tablefunc/VERSION +++ b/src/extensions/contrib/tablefunc/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/tablefunc/release.toml b/src/extensions/contrib/tablefunc/release.toml index 7522a8d1..f53c036e 100644 --- a/src/extensions/contrib/tablefunc/release.toml +++ b/src/extensions/contrib/tablefunc/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-tablefunc-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/tablefunc/release.toml" diff --git a/src/extensions/contrib/tcn/CHANGELOG.md b/src/extensions/contrib/tcn/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/tcn/CHANGELOG.md +++ b/src/extensions/contrib/tcn/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/tcn/VERSION b/src/extensions/contrib/tcn/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/tcn/VERSION +++ b/src/extensions/contrib/tcn/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/tcn/release.toml b/src/extensions/contrib/tcn/release.toml index 6ee324e9..f3b54127 100644 --- a/src/extensions/contrib/tcn/release.toml +++ b/src/extensions/contrib/tcn/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-tcn-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/tcn/release.toml" diff --git a/src/extensions/contrib/tsm_system_rows/CHANGELOG.md b/src/extensions/contrib/tsm_system_rows/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/tsm_system_rows/CHANGELOG.md +++ b/src/extensions/contrib/tsm_system_rows/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/tsm_system_rows/VERSION b/src/extensions/contrib/tsm_system_rows/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/tsm_system_rows/VERSION +++ b/src/extensions/contrib/tsm_system_rows/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/tsm_system_rows/release.toml b/src/extensions/contrib/tsm_system_rows/release.toml index 9b80762f..6dd38833 100644 --- a/src/extensions/contrib/tsm_system_rows/release.toml +++ b/src/extensions/contrib/tsm_system_rows/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-tsm-system-rows-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/tsm_system_rows/release.toml" diff --git a/src/extensions/contrib/tsm_system_time/CHANGELOG.md b/src/extensions/contrib/tsm_system_time/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/tsm_system_time/CHANGELOG.md +++ b/src/extensions/contrib/tsm_system_time/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/tsm_system_time/VERSION b/src/extensions/contrib/tsm_system_time/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/tsm_system_time/VERSION +++ b/src/extensions/contrib/tsm_system_time/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/tsm_system_time/release.toml b/src/extensions/contrib/tsm_system_time/release.toml index 3d7e66c8..60a8bdaa 100644 --- a/src/extensions/contrib/tsm_system_time/release.toml +++ b/src/extensions/contrib/tsm_system_time/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-tsm-system-time-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/tsm_system_time/release.toml" diff --git a/src/extensions/contrib/unaccent/CHANGELOG.md b/src/extensions/contrib/unaccent/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/unaccent/CHANGELOG.md +++ b/src/extensions/contrib/unaccent/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/unaccent/VERSION b/src/extensions/contrib/unaccent/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/unaccent/VERSION +++ b/src/extensions/contrib/unaccent/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/unaccent/release.toml b/src/extensions/contrib/unaccent/release.toml index da40097a..5c90718d 100644 --- a/src/extensions/contrib/unaccent/release.toml +++ b/src/extensions/contrib/unaccent/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-unaccent-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/unaccent/release.toml" diff --git a/src/extensions/contrib/uuid_ossp/CHANGELOG.md b/src/extensions/contrib/uuid_ossp/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/contrib/uuid_ossp/CHANGELOG.md +++ b/src/extensions/contrib/uuid_ossp/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/contrib/uuid_ossp/VERSION b/src/extensions/contrib/uuid_ossp/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/contrib/uuid_ossp/VERSION +++ b/src/extensions/contrib/uuid_ossp/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/contrib/uuid_ossp/release.toml b/src/extensions/contrib/uuid_ossp/release.toml index bdf98076..c968f10f 100644 --- a/src/extensions/contrib/uuid_ossp/release.toml +++ b/src/extensions/contrib/uuid_ossp/release.toml @@ -40,9 +40,9 @@ path = "src/postgres/versions/18/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-uuid-ossp-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/contrib/uuid_ossp/release.toml" diff --git a/src/extensions/evidence/runs/2026-06-07-transitional-catalog-smoke.json b/src/extensions/evidence/runs/2026-06-07-transitional-catalog-smoke.json index ebdf8040..257eef12 100644 --- a/src/extensions/evidence/runs/2026-06-07-transitional-catalog-smoke.json +++ b/src/extensions/evidence/runs/2026-06-07-transitional-catalog-smoke.json @@ -514,7 +514,7 @@ } ], "schema": "oliphaunt-extension-evidence-v1", - "sourceDigest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe", + "sourceDigest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5", "sourceDigestInputs": [ "src/postgres/versions/18/source.toml", "src/extensions/catalog/extensions.promoted.toml", diff --git a/src/extensions/external/pg_hashids/CHANGELOG.md b/src/extensions/external/pg_hashids/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/external/pg_hashids/CHANGELOG.md +++ b/src/extensions/external/pg_hashids/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/external/pg_hashids/VERSION b/src/extensions/external/pg_hashids/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/external/pg_hashids/VERSION +++ b/src/extensions/external/pg_hashids/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/external/pg_hashids/release.toml b/src/extensions/external/pg_hashids/release.toml index 242610f2..ba0ec99d 100644 --- a/src/extensions/external/pg_hashids/release.toml +++ b/src/extensions/external/pg_hashids/release.toml @@ -40,9 +40,9 @@ path = "src/extensions/external/pg_hashids/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pg-hashids-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/external/pg_hashids/release.toml" diff --git a/src/extensions/external/pg_ivm/CHANGELOG.md b/src/extensions/external/pg_ivm/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/external/pg_ivm/CHANGELOG.md +++ b/src/extensions/external/pg_ivm/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/external/pg_ivm/VERSION b/src/extensions/external/pg_ivm/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/external/pg_ivm/VERSION +++ b/src/extensions/external/pg_ivm/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/external/pg_ivm/release.toml b/src/extensions/external/pg_ivm/release.toml index 523f1113..82a4a1d9 100644 --- a/src/extensions/external/pg_ivm/release.toml +++ b/src/extensions/external/pg_ivm/release.toml @@ -40,9 +40,9 @@ path = "src/extensions/external/pg_ivm/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pg-ivm-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/external/pg_ivm/release.toml" diff --git a/src/extensions/external/pg_textsearch/CHANGELOG.md b/src/extensions/external/pg_textsearch/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/external/pg_textsearch/CHANGELOG.md +++ b/src/extensions/external/pg_textsearch/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/external/pg_textsearch/VERSION b/src/extensions/external/pg_textsearch/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/external/pg_textsearch/VERSION +++ b/src/extensions/external/pg_textsearch/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/external/pg_textsearch/release.toml b/src/extensions/external/pg_textsearch/release.toml index 2a4aa556..d6973e73 100644 --- a/src/extensions/external/pg_textsearch/release.toml +++ b/src/extensions/external/pg_textsearch/release.toml @@ -40,9 +40,9 @@ path = "src/extensions/external/pg_textsearch/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pg-textsearch-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/external/pg_textsearch/release.toml" diff --git a/src/extensions/external/pg_uuidv7/CHANGELOG.md b/src/extensions/external/pg_uuidv7/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/external/pg_uuidv7/CHANGELOG.md +++ b/src/extensions/external/pg_uuidv7/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/external/pg_uuidv7/VERSION b/src/extensions/external/pg_uuidv7/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/external/pg_uuidv7/VERSION +++ b/src/extensions/external/pg_uuidv7/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/external/pg_uuidv7/release.toml b/src/extensions/external/pg_uuidv7/release.toml index 8be04787..f3067ddb 100644 --- a/src/extensions/external/pg_uuidv7/release.toml +++ b/src/extensions/external/pg_uuidv7/release.toml @@ -40,9 +40,9 @@ path = "src/extensions/external/pg_uuidv7/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pg-uuidv7-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/external/pg_uuidv7/release.toml" diff --git a/src/extensions/external/pgtap/CHANGELOG.md b/src/extensions/external/pgtap/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/external/pgtap/CHANGELOG.md +++ b/src/extensions/external/pgtap/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/external/pgtap/VERSION b/src/extensions/external/pgtap/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/external/pgtap/VERSION +++ b/src/extensions/external/pgtap/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/external/pgtap/release.toml b/src/extensions/external/pgtap/release.toml index b9fa99ad..e9d263aa 100644 --- a/src/extensions/external/pgtap/release.toml +++ b/src/extensions/external/pgtap/release.toml @@ -40,9 +40,9 @@ path = "src/extensions/external/pgtap/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-pgtap-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/external/pgtap/release.toml" diff --git a/src/extensions/external/postgis/CHANGELOG.md b/src/extensions/external/postgis/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/external/postgis/CHANGELOG.md +++ b/src/extensions/external/postgis/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/external/postgis/VERSION b/src/extensions/external/postgis/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/external/postgis/VERSION +++ b/src/extensions/external/postgis/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/external/postgis/release.toml b/src/extensions/external/postgis/release.toml index 2e0a04f0..e8cbe69f 100644 --- a/src/extensions/external/postgis/release.toml +++ b/src/extensions/external/postgis/release.toml @@ -40,9 +40,9 @@ path = "src/extensions/external/postgis/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-postgis-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/external/postgis/release.toml" diff --git a/src/extensions/external/vector/CHANGELOG.md b/src/extensions/external/vector/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/extensions/external/vector/CHANGELOG.md +++ b/src/extensions/external/vector/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/extensions/external/vector/VERSION b/src/extensions/external/vector/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/extensions/external/vector/VERSION +++ b/src/extensions/external/vector/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/extensions/external/vector/release.toml b/src/extensions/external/vector/release.toml index 544115e3..c21f1697 100644 --- a/src/extensions/external/vector/release.toml +++ b/src/extensions/external/vector/release.toml @@ -40,9 +40,9 @@ path = "src/extensions/external/vector/source.toml" postgres_major = "18" extension_runtime_contract = "src/shared/extension-runtime-contract/contract.toml" native_runtime_product = "liboliphaunt-native" -native_runtime_version = "0.0.0" +native_runtime_version = "0.1.0" wasix_runtime_product = "liboliphaunt-wasix" -wasix_runtime_version = "0.0.0" +wasix_runtime_version = "0.1.0" [compatibility_versions.oliphaunt-extension-vector-liboliphaunt-native] source_product = "liboliphaunt-native" path = "src/extensions/external/vector/release.toml" diff --git a/src/extensions/generated/docs/extension-evidence.json b/src/extensions/generated/docs/extension-evidence.json index 2c76a81c..ee2b87de 100644 --- a/src/extensions/generated/docs/extension-evidence.json +++ b/src/extensions/generated/docs/extension-evidence.json @@ -20,7 +20,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -56,7 +56,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -92,7 +92,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -128,7 +128,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -164,7 +164,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -200,7 +200,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -236,7 +236,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -272,7 +272,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -308,7 +308,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -344,7 +344,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -380,7 +380,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -416,7 +416,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -452,7 +452,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -488,7 +488,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -524,7 +524,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -560,7 +560,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -596,7 +596,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -632,7 +632,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -668,7 +668,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -704,7 +704,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -740,7 +740,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -776,7 +776,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -812,7 +812,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -848,7 +848,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -884,7 +884,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -920,7 +920,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -956,7 +956,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -992,7 +992,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -1028,7 +1028,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -1064,7 +1064,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -1100,7 +1100,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -1136,7 +1136,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -1172,7 +1172,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -1208,7 +1208,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -1244,7 +1244,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -1280,7 +1280,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -1316,7 +1316,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -1352,7 +1352,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -1388,7 +1388,7 @@ "restart": "passed", "server": "passed" }, - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe" + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5" } ], "platform-targets": [ @@ -1420,7 +1420,7 @@ "path": "src/extensions/evidence/runs" } ], - "source-digest": "sha256:de166adedb39eb3a867e42290903ea34c5a08810df9bc2e7e225f8c17cab5dfe", + "source-digest": "sha256:acda9a2cd0d8b248d49b378b8ebeb118979e6ae2e081fa1ae01d49b1fbbf91d5", "source-digest-inputs": [ "src/postgres/versions/18/source.toml", "src/extensions/catalog/extensions.promoted.toml", diff --git a/src/runtimes/broker/CHANGELOG.md b/src/runtimes/broker/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/runtimes/broker/CHANGELOG.md +++ b/src/runtimes/broker/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/runtimes/broker/Cargo.toml b/src/runtimes/broker/Cargo.toml index fe96513e..8dd8c795 100644 --- a/src/runtimes/broker/Cargo.toml +++ b/src/runtimes/broker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-broker" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Oliphaunt broker helper process for process-isolated embedded PostgreSQL." @@ -15,4 +15,4 @@ name = "oliphaunt-broker" path = "src/main.rs" [dependencies] -oliphaunt = { path = "../../sdks/rust", version = "=0.0.0" } +oliphaunt = { path = "../../sdks/rust", version = "=0.1.0" } diff --git a/src/runtimes/broker/crates/linux-arm64-gnu/Cargo.toml b/src/runtimes/broker/crates/linux-arm64-gnu/Cargo.toml index 02077773..1179eb4e 100644 --- a/src/runtimes/broker/crates/linux-arm64-gnu/Cargo.toml +++ b/src/runtimes/broker/crates/linux-arm64-gnu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-broker-linux-arm64-gnu" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Cargo artifact crate for the linux-arm64-gnu oliphaunt-broker helper binary." diff --git a/src/runtimes/broker/crates/linux-x64-gnu/Cargo.toml b/src/runtimes/broker/crates/linux-x64-gnu/Cargo.toml index 94f62138..3ca7322e 100644 --- a/src/runtimes/broker/crates/linux-x64-gnu/Cargo.toml +++ b/src/runtimes/broker/crates/linux-x64-gnu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-broker-linux-x64-gnu" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Cargo artifact crate for the linux-x64-gnu oliphaunt-broker helper binary." diff --git a/src/runtimes/broker/crates/macos-arm64/Cargo.toml b/src/runtimes/broker/crates/macos-arm64/Cargo.toml index b60e5891..ae806f31 100644 --- a/src/runtimes/broker/crates/macos-arm64/Cargo.toml +++ b/src/runtimes/broker/crates/macos-arm64/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-broker-macos-arm64" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Cargo artifact crate for the macos-arm64 oliphaunt-broker helper binary." diff --git a/src/runtimes/broker/crates/windows-x64-msvc/Cargo.toml b/src/runtimes/broker/crates/windows-x64-msvc/Cargo.toml index 69ec8e91..7109e74c 100644 --- a/src/runtimes/broker/crates/windows-x64-msvc/Cargo.toml +++ b/src/runtimes/broker/crates/windows-x64-msvc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-broker-windows-x64-msvc" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Cargo artifact crate for the windows-x64-msvc oliphaunt-broker helper binary." diff --git a/src/runtimes/broker/packages/darwin-arm64/package.json b/src/runtimes/broker/packages/darwin-arm64/package.json index 5e258cf2..1b105f8b 100644 --- a/src/runtimes/broker/packages/darwin-arm64/package.json +++ b/src/runtimes/broker/packages/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/broker-darwin-arm64", - "version": "0.0.0", + "version": "0.1.0", "description": "macOS arm64 oliphaunt-broker helper binary.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/broker/packages/linux-arm64-gnu/package.json b/src/runtimes/broker/packages/linux-arm64-gnu/package.json index 0402f32d..7910a0aa 100644 --- a/src/runtimes/broker/packages/linux-arm64-gnu/package.json +++ b/src/runtimes/broker/packages/linux-arm64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/broker-linux-arm64-gnu", - "version": "0.0.0", + "version": "0.1.0", "description": "Linux arm64 glibc oliphaunt-broker helper binary.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/broker/packages/linux-x64-gnu/package.json b/src/runtimes/broker/packages/linux-x64-gnu/package.json index 541fa784..296d607a 100644 --- a/src/runtimes/broker/packages/linux-x64-gnu/package.json +++ b/src/runtimes/broker/packages/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/broker-linux-x64-gnu", - "version": "0.0.0", + "version": "0.1.0", "description": "Linux x64 glibc oliphaunt-broker helper binary.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/broker/packages/win32-x64-msvc/package.json b/src/runtimes/broker/packages/win32-x64-msvc/package.json index 54e5bd60..6c3cf4bf 100644 --- a/src/runtimes/broker/packages/win32-x64-msvc/package.json +++ b/src/runtimes/broker/packages/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/broker-win32-x64-msvc", - "version": "0.0.0", + "version": "0.1.0", "description": "Windows x64 MSVC oliphaunt-broker helper binary.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/liboliphaunt/native/CHANGELOG.md b/src/runtimes/liboliphaunt/native/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/runtimes/liboliphaunt/native/CHANGELOG.md +++ b/src/runtimes/liboliphaunt/native/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/runtimes/liboliphaunt/native/VERSION b/src/runtimes/liboliphaunt/native/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/runtimes/liboliphaunt/native/VERSION +++ b/src/runtimes/liboliphaunt/native/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/runtimes/liboliphaunt/native/crates/tools/Cargo.toml b/src/runtimes/liboliphaunt/native/crates/tools/Cargo.toml index 2fe86094..2e6a9349 100644 --- a/src/runtimes/liboliphaunt/native/crates/tools/Cargo.toml +++ b/src/runtimes/liboliphaunt/native/crates/tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-tools" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Target-selecting Cargo facade for Oliphaunt native pg_dump and psql artifacts." diff --git a/src/runtimes/liboliphaunt/native/icu-npm/OliphauntICU.podspec b/src/runtimes/liboliphaunt/native/icu-npm/OliphauntICU.podspec index e2ff8d56..f1e36d2d 100644 --- a/src/runtimes/liboliphaunt/native/icu-npm/OliphauntICU.podspec +++ b/src/runtimes/liboliphaunt/native/icu-npm/OliphauntICU.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'OliphauntICU' - s.version = '0.0.0' # x-release-please-version + s.version = '0.1.0' # x-release-please-version s.summary = 'Portable ICU data files for Oliphaunt runtimes.' s.homepage = 'https://oliphaunt.dev' s.license = { :type => 'MIT AND Apache-2.0 AND PostgreSQL AND Unicode-3.0' } diff --git a/src/runtimes/liboliphaunt/native/icu-npm/package.json b/src/runtimes/liboliphaunt/native/icu-npm/package.json index c6c29c60..520d5c90 100644 --- a/src/runtimes/liboliphaunt/native/icu-npm/package.json +++ b/src/runtimes/liboliphaunt/native/icu-npm/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/icu", - "version": "0.0.0", + "version": "0.1.0", "description": "Portable ICU data files for Oliphaunt runtimes.", "license": "MIT AND Apache-2.0 AND PostgreSQL AND Unicode-3.0", "type": "module", diff --git a/src/runtimes/liboliphaunt/native/packages/darwin-arm64/package.json b/src/runtimes/liboliphaunt/native/packages/darwin-arm64/package.json index 602d1b3b..5d22f566 100644 --- a/src/runtimes/liboliphaunt/native/packages/darwin-arm64/package.json +++ b/src/runtimes/liboliphaunt/native/packages/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/liboliphaunt-darwin-arm64", - "version": "0.0.0", + "version": "0.1.0", "description": "macOS arm64 liboliphaunt native library for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/liboliphaunt/native/packages/linux-arm64-gnu/package.json b/src/runtimes/liboliphaunt/native/packages/linux-arm64-gnu/package.json index c3f649ac..5931eac3 100644 --- a/src/runtimes/liboliphaunt/native/packages/linux-arm64-gnu/package.json +++ b/src/runtimes/liboliphaunt/native/packages/linux-arm64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/liboliphaunt-linux-arm64-gnu", - "version": "0.0.0", + "version": "0.1.0", "description": "Linux arm64 glibc liboliphaunt native library for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/liboliphaunt/native/packages/linux-x64-gnu/package.json b/src/runtimes/liboliphaunt/native/packages/linux-x64-gnu/package.json index ed0a867f..5e9bd4c0 100644 --- a/src/runtimes/liboliphaunt/native/packages/linux-x64-gnu/package.json +++ b/src/runtimes/liboliphaunt/native/packages/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/liboliphaunt-linux-x64-gnu", - "version": "0.0.0", + "version": "0.1.0", "description": "Linux x64 glibc liboliphaunt native library for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/liboliphaunt/native/packages/win32-x64-msvc/package.json b/src/runtimes/liboliphaunt/native/packages/win32-x64-msvc/package.json index eb013a94..db5a62fc 100644 --- a/src/runtimes/liboliphaunt/native/packages/win32-x64-msvc/package.json +++ b/src/runtimes/liboliphaunt/native/packages/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/liboliphaunt-win32-x64-msvc", - "version": "0.0.0", + "version": "0.1.0", "description": "Windows x64 MSVC liboliphaunt native library for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/liboliphaunt/native/tools-packages/darwin-arm64/package.json b/src/runtimes/liboliphaunt/native/tools-packages/darwin-arm64/package.json index 77718467..8d374a78 100644 --- a/src/runtimes/liboliphaunt/native/tools-packages/darwin-arm64/package.json +++ b/src/runtimes/liboliphaunt/native/tools-packages/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/tools-darwin-arm64", - "version": "0.0.0", + "version": "0.1.0", "description": "macOS arm64 PostgreSQL client tools for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/liboliphaunt/native/tools-packages/linux-arm64-gnu/package.json b/src/runtimes/liboliphaunt/native/tools-packages/linux-arm64-gnu/package.json index ce7f1da2..69f88c84 100644 --- a/src/runtimes/liboliphaunt/native/tools-packages/linux-arm64-gnu/package.json +++ b/src/runtimes/liboliphaunt/native/tools-packages/linux-arm64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/tools-linux-arm64-gnu", - "version": "0.0.0", + "version": "0.1.0", "description": "Linux arm64 glibc PostgreSQL client tools for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/liboliphaunt/native/tools-packages/linux-x64-gnu/package.json b/src/runtimes/liboliphaunt/native/tools-packages/linux-x64-gnu/package.json index b374ef2e..bab423d9 100644 --- a/src/runtimes/liboliphaunt/native/tools-packages/linux-x64-gnu/package.json +++ b/src/runtimes/liboliphaunt/native/tools-packages/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/tools-linux-x64-gnu", - "version": "0.0.0", + "version": "0.1.0", "description": "Linux x64 glibc PostgreSQL client tools for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/liboliphaunt/native/tools-packages/win32-x64-msvc/package.json b/src/runtimes/liboliphaunt/native/tools-packages/win32-x64-msvc/package.json index f3d47157..7d4c9aaa 100644 --- a/src/runtimes/liboliphaunt/native/tools-packages/win32-x64-msvc/package.json +++ b/src/runtimes/liboliphaunt/native/tools-packages/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/tools-win32-x64-msvc", - "version": "0.0.0", + "version": "0.1.0", "description": "Windows x64 MSVC PostgreSQL client tools for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/liboliphaunt/wasix/CHANGELOG.md b/src/runtimes/liboliphaunt/wasix/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/runtimes/liboliphaunt/wasix/CHANGELOG.md +++ b/src/runtimes/liboliphaunt/wasix/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/runtimes/liboliphaunt/wasix/VERSION b/src/runtimes/liboliphaunt/wasix/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/runtimes/liboliphaunt/wasix/VERSION +++ b/src/runtimes/liboliphaunt/wasix/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/runtimes/liboliphaunt/wasix/assets/generated/asset-inputs.sha256 b/src/runtimes/liboliphaunt/wasix/assets/generated/asset-inputs.sha256 index ac75c9b4..9b00f28f 100644 --- a/src/runtimes/liboliphaunt/wasix/assets/generated/asset-inputs.sha256 +++ b/src/runtimes/liboliphaunt/wasix/assets/generated/asset-inputs.sha256 @@ -1 +1 @@ -8e725522b40e2aedbe7591eade8ba366771018bd012a3bc815510aeb80112eb4 +d677883f2dd8c0e3c67ee7ec89c94ff7c25700c2f288c163d988153b64ecb3b4 diff --git a/src/runtimes/liboliphaunt/wasix/crates/aot/aarch64-apple-darwin/Cargo.toml b/src/runtimes/liboliphaunt/wasix/crates/aot/aarch64-apple-darwin/Cargo.toml index 9fda1d2c..77f96f1a 100644 --- a/src/runtimes/liboliphaunt/wasix/crates/aot/aarch64-apple-darwin/Cargo.toml +++ b/src/runtimes/liboliphaunt/wasix/crates/aot/aarch64-apple-darwin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liboliphaunt-wasix-aot-aarch64-apple-darwin" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Wasmer AOT runtime artifacts for oliphaunt-wasix on aarch64-apple-darwin" diff --git a/src/runtimes/liboliphaunt/wasix/crates/aot/aarch64-unknown-linux-gnu/Cargo.toml b/src/runtimes/liboliphaunt/wasix/crates/aot/aarch64-unknown-linux-gnu/Cargo.toml index f4274c3f..fbb57cb5 100644 --- a/src/runtimes/liboliphaunt/wasix/crates/aot/aarch64-unknown-linux-gnu/Cargo.toml +++ b/src/runtimes/liboliphaunt/wasix/crates/aot/aarch64-unknown-linux-gnu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liboliphaunt-wasix-aot-aarch64-unknown-linux-gnu" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Wasmer AOT runtime artifacts for oliphaunt-wasix on aarch64-unknown-linux-gnu" diff --git a/src/runtimes/liboliphaunt/wasix/crates/aot/x86_64-pc-windows-msvc/Cargo.toml b/src/runtimes/liboliphaunt/wasix/crates/aot/x86_64-pc-windows-msvc/Cargo.toml index 044a5942..a6571e1b 100644 --- a/src/runtimes/liboliphaunt/wasix/crates/aot/x86_64-pc-windows-msvc/Cargo.toml +++ b/src/runtimes/liboliphaunt/wasix/crates/aot/x86_64-pc-windows-msvc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liboliphaunt-wasix-aot-x86_64-pc-windows-msvc" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Wasmer AOT runtime artifacts for oliphaunt-wasix on x86_64-pc-windows-msvc" diff --git a/src/runtimes/liboliphaunt/wasix/crates/aot/x86_64-unknown-linux-gnu/Cargo.toml b/src/runtimes/liboliphaunt/wasix/crates/aot/x86_64-unknown-linux-gnu/Cargo.toml index e148f63a..c344fa5b 100644 --- a/src/runtimes/liboliphaunt/wasix/crates/aot/x86_64-unknown-linux-gnu/Cargo.toml +++ b/src/runtimes/liboliphaunt/wasix/crates/aot/x86_64-unknown-linux-gnu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liboliphaunt-wasix-aot-x86_64-unknown-linux-gnu" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Wasmer AOT runtime artifacts for oliphaunt-wasix on x86_64-unknown-linux-gnu" diff --git a/src/runtimes/liboliphaunt/wasix/crates/assets/Cargo.toml b/src/runtimes/liboliphaunt/wasix/crates/assets/Cargo.toml index d9576378..872f3e67 100644 --- a/src/runtimes/liboliphaunt/wasix/crates/assets/Cargo.toml +++ b/src/runtimes/liboliphaunt/wasix/crates/assets/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liboliphaunt-wasix-portable" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Portable WASIX runtime assets for oliphaunt-wasix" diff --git a/src/runtimes/liboliphaunt/wasix/crates/tools-aot/aarch64-apple-darwin/Cargo.toml b/src/runtimes/liboliphaunt/wasix/crates/tools-aot/aarch64-apple-darwin/Cargo.toml index 9d72a2c9..441abcc2 100644 --- a/src/runtimes/liboliphaunt/wasix/crates/tools-aot/aarch64-apple-darwin/Cargo.toml +++ b/src/runtimes/liboliphaunt/wasix/crates/tools-aot/aarch64-apple-darwin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-wasix-tools-aot-aarch64-apple-darwin" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Wasmer AOT pg_dump and psql artifacts for oliphaunt-wasix on aarch64-apple-darwin" diff --git a/src/runtimes/liboliphaunt/wasix/crates/tools-aot/aarch64-unknown-linux-gnu/Cargo.toml b/src/runtimes/liboliphaunt/wasix/crates/tools-aot/aarch64-unknown-linux-gnu/Cargo.toml index b2e7168e..5b8975ec 100644 --- a/src/runtimes/liboliphaunt/wasix/crates/tools-aot/aarch64-unknown-linux-gnu/Cargo.toml +++ b/src/runtimes/liboliphaunt/wasix/crates/tools-aot/aarch64-unknown-linux-gnu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-wasix-tools-aot-aarch64-unknown-linux-gnu" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Wasmer AOT pg_dump and psql artifacts for oliphaunt-wasix on aarch64-unknown-linux-gnu" diff --git a/src/runtimes/liboliphaunt/wasix/crates/tools-aot/x86_64-pc-windows-msvc/Cargo.toml b/src/runtimes/liboliphaunt/wasix/crates/tools-aot/x86_64-pc-windows-msvc/Cargo.toml index 4347d6e8..7ecee15e 100644 --- a/src/runtimes/liboliphaunt/wasix/crates/tools-aot/x86_64-pc-windows-msvc/Cargo.toml +++ b/src/runtimes/liboliphaunt/wasix/crates/tools-aot/x86_64-pc-windows-msvc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-wasix-tools-aot-x86_64-pc-windows-msvc" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Wasmer AOT pg_dump and psql artifacts for oliphaunt-wasix on x86_64-pc-windows-msvc" diff --git a/src/runtimes/liboliphaunt/wasix/crates/tools-aot/x86_64-unknown-linux-gnu/Cargo.toml b/src/runtimes/liboliphaunt/wasix/crates/tools-aot/x86_64-unknown-linux-gnu/Cargo.toml index 9892374b..8a07516c 100644 --- a/src/runtimes/liboliphaunt/wasix/crates/tools-aot/x86_64-unknown-linux-gnu/Cargo.toml +++ b/src/runtimes/liboliphaunt/wasix/crates/tools-aot/x86_64-unknown-linux-gnu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-wasix-tools-aot-x86_64-unknown-linux-gnu" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Wasmer AOT pg_dump and psql artifacts for oliphaunt-wasix on x86_64-unknown-linux-gnu" diff --git a/src/runtimes/liboliphaunt/wasix/crates/tools/Cargo.toml b/src/runtimes/liboliphaunt/wasix/crates/tools/Cargo.toml index 7fe4a554..828c20d1 100644 --- a/src/runtimes/liboliphaunt/wasix/crates/tools/Cargo.toml +++ b/src/runtimes/liboliphaunt/wasix/crates/tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-wasix-tools" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "WASIX pg_dump and psql assets for oliphaunt-wasix" diff --git a/src/runtimes/node-direct/CHANGELOG.md b/src/runtimes/node-direct/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/runtimes/node-direct/CHANGELOG.md +++ b/src/runtimes/node-direct/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/runtimes/node-direct/package.json b/src/runtimes/node-direct/package.json index 17536b22..0a5f5895 100644 --- a/src/runtimes/node-direct/package.json +++ b/src/runtimes/node-direct/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/node-direct", - "version": "0.0.0", + "version": "0.1.0", "description": "Node-API native direct adapter for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "private": true, @@ -11,7 +11,7 @@ "directory": "src/runtimes/node-direct" }, "oliphaunt": { - "liboliphauntVersion": "0.0.0" + "liboliphauntVersion": "0.1.0" }, "files": [ "native", diff --git a/src/runtimes/node-direct/packages/darwin-arm64/package.json b/src/runtimes/node-direct/packages/darwin-arm64/package.json index f640c824..bf23d028 100644 --- a/src/runtimes/node-direct/packages/darwin-arm64/package.json +++ b/src/runtimes/node-direct/packages/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/node-direct-darwin-arm64", - "version": "0.0.0", + "version": "0.1.0", "description": "macOS arm64 prebuilt Node-API native direct adapter for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/node-direct/packages/linux-arm64-gnu/package.json b/src/runtimes/node-direct/packages/linux-arm64-gnu/package.json index 8dfeb439..3c457e35 100644 --- a/src/runtimes/node-direct/packages/linux-arm64-gnu/package.json +++ b/src/runtimes/node-direct/packages/linux-arm64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/node-direct-linux-arm64-gnu", - "version": "0.0.0", + "version": "0.1.0", "description": "Linux arm64 glibc prebuilt Node-API native direct adapter for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/node-direct/packages/linux-x64-gnu/package.json b/src/runtimes/node-direct/packages/linux-x64-gnu/package.json index 2e921bf4..414c7bc8 100644 --- a/src/runtimes/node-direct/packages/linux-x64-gnu/package.json +++ b/src/runtimes/node-direct/packages/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/node-direct-linux-x64-gnu", - "version": "0.0.0", + "version": "0.1.0", "description": "Linux x64 glibc prebuilt Node-API native direct adapter for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/runtimes/node-direct/packages/win32-x64-msvc/package.json b/src/runtimes/node-direct/packages/win32-x64-msvc/package.json index 9894dc4b..c5f265f6 100644 --- a/src/runtimes/node-direct/packages/win32-x64-msvc/package.json +++ b/src/runtimes/node-direct/packages/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/node-direct-win32-x64-msvc", - "version": "0.0.0", + "version": "0.1.0", "description": "Windows x64 MSVC prebuilt Node-API native direct adapter for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", diff --git a/src/sdks/js/CHANGELOG.md b/src/sdks/js/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/sdks/js/CHANGELOG.md +++ b/src/sdks/js/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/sdks/js/jsr.json b/src/sdks/js/jsr.json index 6612e315..976e6c2e 100644 --- a/src/sdks/js/jsr.json +++ b/src/sdks/js/jsr.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/ts", - "version": "0.0.0", + "version": "0.1.0", "license": "MIT AND Apache-2.0 AND PostgreSQL", "exports": { ".": "./src/jsr.ts", diff --git a/src/sdks/js/package.json b/src/sdks/js/package.json index cd79df1b..d36e8eb8 100644 --- a/src/sdks/js/package.json +++ b/src/sdks/js/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/ts", - "version": "0.0.0", + "version": "0.1.0", "description": "TypeScript SDK for Oliphaunt on Node.js, Bun, and Deno.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "type": "module", @@ -14,31 +14,31 @@ }, "homepage": "https://oliphaunt.dev", "oliphaunt": { - "liboliphauntVersion": "0.0.0", + "liboliphauntVersion": "0.1.0", "icuPackage": "@oliphaunt/icu", - "icuVersion": "0.0.0", - "brokerVersion": "0.0.0", - "nodeDirectAddonVersion": "0.0.0", + "icuVersion": "0.1.0", + "brokerVersion": "0.1.0", + "nodeDirectAddonVersion": "0.1.0", "nodeDirectAddon": "oliphaunt-node-direct", "brokerHelper": "oliphaunt-broker" }, "optionalDependencies": { - "@oliphaunt/broker-darwin-arm64": "workspace:0.0.0", - "@oliphaunt/broker-linux-arm64-gnu": "workspace:0.0.0", - "@oliphaunt/broker-linux-x64-gnu": "workspace:0.0.0", - "@oliphaunt/broker-win32-x64-msvc": "workspace:0.0.0", - "@oliphaunt/liboliphaunt-darwin-arm64": "workspace:0.0.0", - "@oliphaunt/liboliphaunt-linux-arm64-gnu": "workspace:0.0.0", - "@oliphaunt/liboliphaunt-linux-x64-gnu": "workspace:0.0.0", - "@oliphaunt/liboliphaunt-win32-x64-msvc": "workspace:0.0.0", - "@oliphaunt/node-direct-darwin-arm64": "workspace:0.0.0", - "@oliphaunt/node-direct-linux-arm64-gnu": "workspace:0.0.0", - "@oliphaunt/node-direct-linux-x64-gnu": "workspace:0.0.0", - "@oliphaunt/node-direct-win32-x64-msvc": "workspace:0.0.0", - "@oliphaunt/tools-darwin-arm64": "workspace:0.0.0", - "@oliphaunt/tools-linux-arm64-gnu": "workspace:0.0.0", - "@oliphaunt/tools-linux-x64-gnu": "workspace:0.0.0", - "@oliphaunt/tools-win32-x64-msvc": "workspace:0.0.0" + "@oliphaunt/broker-darwin-arm64": "workspace:0.1.0", + "@oliphaunt/broker-linux-arm64-gnu": "workspace:0.1.0", + "@oliphaunt/broker-linux-x64-gnu": "workspace:0.1.0", + "@oliphaunt/broker-win32-x64-msvc": "workspace:0.1.0", + "@oliphaunt/liboliphaunt-darwin-arm64": "workspace:0.1.0", + "@oliphaunt/liboliphaunt-linux-arm64-gnu": "workspace:0.1.0", + "@oliphaunt/liboliphaunt-linux-x64-gnu": "workspace:0.1.0", + "@oliphaunt/liboliphaunt-win32-x64-msvc": "workspace:0.1.0", + "@oliphaunt/node-direct-darwin-arm64": "workspace:0.1.0", + "@oliphaunt/node-direct-linux-arm64-gnu": "workspace:0.1.0", + "@oliphaunt/node-direct-linux-x64-gnu": "workspace:0.1.0", + "@oliphaunt/node-direct-win32-x64-msvc": "workspace:0.1.0", + "@oliphaunt/tools-darwin-arm64": "workspace:0.1.0", + "@oliphaunt/tools-linux-arm64-gnu": "workspace:0.1.0", + "@oliphaunt/tools-linux-x64-gnu": "workspace:0.1.0", + "@oliphaunt/tools-win32-x64-msvc": "workspace:0.1.0" }, "publishConfig": { "access": "public", diff --git a/src/sdks/kotlin/CHANGELOG.md b/src/sdks/kotlin/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/sdks/kotlin/CHANGELOG.md +++ b/src/sdks/kotlin/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/sdks/kotlin/VERSION b/src/sdks/kotlin/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/sdks/kotlin/VERSION +++ b/src/sdks/kotlin/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/sdks/kotlin/gradle.properties b/src/sdks/kotlin/gradle.properties index b64205c4..6af6b564 100644 --- a/src/sdks/kotlin/gradle.properties +++ b/src/sdks/kotlin/gradle.properties @@ -3,5 +3,5 @@ kotlin.mpp.enableCInteropCommonization=true kotlin.mpp.applyDefaultHierarchyTemplate=false GROUP=dev.oliphaunt # x-release-please-start-version -VERSION_NAME=0.0.0 +VERSION_NAME=0.1.0 # x-release-please-end diff --git a/src/sdks/kotlin/oliphaunt-android-gradle-plugin/src/main/resources/dev/oliphaunt/android/liboliphaunt.version b/src/sdks/kotlin/oliphaunt-android-gradle-plugin/src/main/resources/dev/oliphaunt/android/liboliphaunt.version index 77d6f4ca..6e8bf73a 100644 --- a/src/sdks/kotlin/oliphaunt-android-gradle-plugin/src/main/resources/dev/oliphaunt/android/liboliphaunt.version +++ b/src/sdks/kotlin/oliphaunt-android-gradle-plugin/src/main/resources/dev/oliphaunt/android/liboliphaunt.version @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/sdks/react-native/CHANGELOG.md b/src/sdks/react-native/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/sdks/react-native/CHANGELOG.md +++ b/src/sdks/react-native/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/sdks/react-native/package.json b/src/sdks/react-native/package.json index 57c23502..6cec6ada 100644 --- a/src/sdks/react-native/package.json +++ b/src/sdks/react-native/package.json @@ -1,6 +1,6 @@ { "name": "@oliphaunt/react-native", - "version": "0.0.0", + "version": "0.1.0", "description": "React Native New Architecture SDK for Oliphaunt.", "license": "MIT AND Apache-2.0 AND PostgreSQL", "repository": { @@ -21,8 +21,8 @@ "types": "lib/typescript/index.d.ts", "react-native": "lib/module/index.js", "oliphaunt": { - "swiftSdkVersion": "0.0.0", - "kotlinSdkVersion": "0.0.0" + "swiftSdkVersion": "0.1.0", + "kotlinSdkVersion": "0.1.0" }, "files": [ "android", diff --git a/src/sdks/rust/CHANGELOG.md b/src/sdks/rust/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/sdks/rust/CHANGELOG.md +++ b/src/sdks/rust/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/sdks/rust/Cargo.toml b/src/sdks/rust/Cargo.toml index f7345109..64d7fbd8 100644 --- a/src/sdks/rust/Cargo.toml +++ b/src/sdks/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Native-first Rust SDK surface for embedded PostgreSQL through liboliphaunt." @@ -23,7 +23,7 @@ extension-signing = ["dep:ed25519-dalek"] [package.metadata.oliphaunt] broker-helper = "oliphaunt-broker" -broker-version = "0.0.0" +broker-version = "0.1.0" [[bin]] name = "oliphaunt-resources" diff --git a/src/sdks/rust/crates/oliphaunt-build/Cargo.toml b/src/sdks/rust/crates/oliphaunt-build/Cargo.toml index 6e763665..eaf379ef 100644 --- a/src/sdks/rust/crates/oliphaunt-build/Cargo.toml +++ b/src/sdks/rust/crates/oliphaunt-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oliphaunt-build" -version = "0.0.0" +version = "0.1.0" edition = "2024" rust-version = "1.93" description = "Cargo build-script integration for staging Oliphaunt runtime artifacts." diff --git a/src/sdks/rust/src/broker.rs b/src/sdks/rust/src/broker.rs index c62140f9..710f56fa 100644 --- a/src/sdks/rust/src/broker.rs +++ b/src/sdks/rust/src/broker.rs @@ -31,7 +31,7 @@ const ENV_BROKER_TRANSPORT: &str = "OLIPHAUNT_BROKER_TRANSPORT"; const ENV_BROKER_AUTH_TOKEN: &str = "OLIPHAUNT_BROKER_AUTH_TOKEN"; const READY_PREFIX: &str = "OLIPHAUNT_BROKER_READY "; const ERROR_PREFIX: &str = "OLIPHAUNT_BROKER_ERROR "; -const BROKER_RELEASE_VERSION: &str = "0.0.0"; +const BROKER_RELEASE_VERSION: &str = "0.1.0"; const BROKER_STARTUP_TIMEOUT: Duration = Duration::from_secs(20); const BROKER_SHUTDOWN_TIMEOUT: Duration = Duration::from_secs(5); diff --git a/src/sdks/swift/CHANGELOG.md b/src/sdks/swift/CHANGELOG.md index 825c32f0..2a9f6ba0 100644 --- a/src/sdks/swift/CHANGELOG.md +++ b/src/sdks/swift/CHANGELOG.md @@ -1 +1,10 @@ # Changelog + +## 0.1.0 (2026-07-01) + + +### Features + +* introduce oliphaunt ([#85](https://github.com/f0rr0/oliphaunt/issues/85)) ([517c83f](https://github.com/f0rr0/oliphaunt/commit/517c83fc2ae2c2d0b72ca87820d02abf6e7e54f2)) + +## Changelog diff --git a/src/sdks/swift/LIBOLIPHAUNT_VERSION b/src/sdks/swift/LIBOLIPHAUNT_VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/sdks/swift/LIBOLIPHAUNT_VERSION +++ b/src/sdks/swift/LIBOLIPHAUNT_VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/src/sdks/swift/VERSION b/src/sdks/swift/VERSION index 77d6f4ca..6e8bf73a 100644 --- a/src/sdks/swift/VERSION +++ b/src/sdks/swift/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/tools/dev/bootstrap-tools.sh b/tools/dev/bootstrap-tools.sh index 275acc04..3531ab9b 100755 --- a/tools/dev/bootstrap-tools.sh +++ b/tools/dev/bootstrap-tools.sh @@ -27,6 +27,7 @@ has_command() { installed_tool_version() { binary="$1" case "$(basename "$binary")" in + cargo-binstall) "$binary" -V 2>/dev/null || true ;; cargo-hack) PATH="$(dirname "$binary"):$PATH" cargo hack --version 2>/dev/null || true ;; cargo-semver-checks) PATH="$(dirname "$binary"):$PATH" cargo semver-checks --version 2>/dev/null || true ;; *) "$binary" --version 2>/dev/null || true ;; @@ -102,7 +103,7 @@ install_cargo_tool() { install_cargo_binstall() { local_binary="$cargo_bin_dir/cargo-binstall" if [ -x "$local_binary" ]; then - output="$("$local_binary" -V 2>/dev/null || true)" + output="$(installed_tool_version "$local_binary")" if version_output_matches "$output" "$CARGO_BINSTALL_VERSION"; then echo "cargo-binstall already installed: $output" return @@ -156,7 +157,7 @@ install_cargo_binstall() { fi install "$binstall_bin" "$local_binary" rm -rf "$tmp" - output="$("$local_binary" -V 2>/dev/null || true)" + output="$(installed_tool_version "$local_binary")" require_pinned_version cargo-binstall "$CARGO_BINSTALL_VERSION" "$output" } diff --git a/tools/perf/runner/Cargo.toml b/tools/perf/runner/Cargo.toml index 2fb88551..cd4fee57 100644 --- a/tools/perf/runner/Cargo.toml +++ b/tools/perf/runner/Cargo.toml @@ -14,8 +14,8 @@ legacy-oliphaunt = ["dep:directories", "dep:oliphaunt-wasix"] anyhow = "1" directories = { version = "6", optional = true } futures-util = "0.3" -oliphaunt = { version = "0.0.0", path = "../../../src/sdks/rust" } -oliphaunt-wasix = { version = "0.0.0", path = "../../../src/bindings/wasix-rust/crates/oliphaunt-wasix", features = ["extensions"], optional = true } +oliphaunt = { version = "0.1.0", path = "../../../src/sdks/rust" } +oliphaunt-wasix = { version = "0.1.0", path = "../../../src/bindings/wasix-rust/crates/oliphaunt-wasix", features = ["extensions"], optional = true } rusqlite = { version = "0.37", features = ["bundled"] } serde = { version = "1", features = ["derive"] } serde_json = "1" diff --git a/tools/policy/assertions/assert-ci-workflows.mjs b/tools/policy/assertions/assert-ci-workflows.mjs index cfa9017e..8b11ea73 100755 --- a/tools/policy/assertions/assert-ci-workflows.mjs +++ b/tools/policy/assertions/assert-ci-workflows.mjs @@ -461,7 +461,13 @@ rejectText(releasePath, 'BUILDS_RUN_ID'); rejectText(releasePath, 'tools/release/release.py plan'); rejectText(releasePath, 'tools/release/release.py ci-' + 'products'); rejectText(releasePath, 'tools/release/release.py ci-' + 'artifacts'); -requireText(releasePath, 'tools/dev/bun.sh tools/release/release_plan.mjs --from-product-tags --include-current-tags --head-ref "$RELEASE_HEAD_SHA" --format github-output'); +requireText(releasePath, "release_plan_args=("); +requireText(releasePath, "--from-product-tags"); +requireText(releasePath, "--include-current-tags"); +requireText(releasePath, '--head-ref "$RELEASE_HEAD_SHA"'); +requireText(releasePath, "--format github-output"); +requireText(releasePath, "--include-current-version-tags"); +requireText(releasePath, 'tools/dev/bun.sh tools/release/release_plan.mjs "${release_plan_args[@]}"'); requireText(releasePath, 'tools/dev/bun.sh tools/release/release_graph_query.mjs ci-products --family sdk-package --products-json "$PRODUCTS_JSON" --format lines'); requireText(releasePath, 'tools/dev/bun.sh tools/release/release_graph_query.mjs ci-artifact-names --product "$product" --family sdk-package --format lines'); requireText(releasePath, 'tools/dev/bun.sh tools/release/release_graph_query.mjs ci-artifact-names --product "$product" --kind "$kind" --family release-assets --format lines'); diff --git a/tools/policy/check-release-policy.mjs b/tools/policy/check-release-policy.mjs index 4469ef03..6e51240e 100644 --- a/tools/policy/check-release-policy.mjs +++ b/tools/policy/check-release-policy.mjs @@ -1142,7 +1142,13 @@ function checkReleaseWorkflowPolicy() { "Create release-please target branch", "target-branch: ${{ steps.release_head.outputs.target_branch }}", "Remove release-please target branch", - 'tools/dev/bun.sh tools/release/release_plan.mjs --from-product-tags --include-current-tags --head-ref "$RELEASE_HEAD_SHA" --format github-output', + "release_plan_args=(", + "--from-product-tags", + "--include-current-tags", + '--head-ref "$RELEASE_HEAD_SHA"', + "--format github-output", + "--include-current-version-tags", + 'tools/dev/bun.sh tools/release/release_plan.mjs "${release_plan_args[@]}"', ]) { if (!releaseWorkflow.includes(snippet)) { fail(`Release workflow must resolve and publish from an explicit release commit: missing ${JSON.stringify(snippet)}`); diff --git a/tools/release/check_release_versions.mjs b/tools/release/check_release_versions.mjs index 4af166e4..d6d98f9a 100644 --- a/tools/release/check_release_versions.mjs +++ b/tools/release/check_release_versions.mjs @@ -11,6 +11,8 @@ import { loadGraph, parseStableVersion as graphParseStableVersion, releaseProductProjectId as graphReleaseProductProjectId, + releaseToolingLagFailureDetail, + releaseToolingLagStatus, runtimeTiedContribProducts, tagMatchPattern, tagPrefixes as graphTagPrefixes, @@ -89,10 +91,6 @@ function registryAssertProductPublication(product, { requirePublished, versionOv registryRun(args); } -function registryReportProductPublication(product) { - registryRun(["--product", product, "--report"]); -} - function registryQueryProductPublication(product) { const data = registryJson(["query-product-publication", "--product", product]); if (!Array.isArray(data.packages) || !Array.isArray(data.missing) || !Array.isArray(data.published)) { @@ -142,6 +140,13 @@ function tagCommit(tag) { return gitOutput(["rev-list", "-n", "1", tag]); } +function commitParents(commit) { + return gitOutput(["rev-list", "--parents", "-n", "1", commit]) + .split(/\s+/u) + .filter(Boolean) + .slice(1); +} + function tagExists(tag) { const result = spawnSync("git", ["rev-parse", "--verify", "--quiet", `refs/tags/${tag}^{commit}`], { cwd: ROOT, @@ -154,6 +159,26 @@ function commitForRef(ref) { return gitOutput(["rev-parse", `${ref}^{commit}`]); } +function validateSwiftpmVersionTag(product, version, headCommit) { + if (product !== "oliphaunt-swift") { + return; + } + const existing = tagExists(version) ? tagCommit(version) : null; + if (existing === null) { + return; + } + const parents = commitParents(existing); + const sourceCommit = parents.length === 1 ? parents[0] : existing; + const lag = releaseToolingLagStatus(sourceCommit, headCommit, TOOL); + if (lag.allowed) { + console.log(`SwiftPM version tag ${version} is compatible with release commit ${headCommit}`); + return; + } + fail( + `SwiftPM version tag ${version} already exists at ${existing}, which is not compatible with release commit ${headCommit}.${releaseToolingLagFailureDetail(lag)}`, + ); +} + function reactNativeCompatibilityVersions() { const packageJson = JSON.parse(readText("src/sdks/react-native/package.json")); const metadata = packageJson.oliphaunt; @@ -216,12 +241,20 @@ async function validateProduct(product, config, headRef) { if (tags.includes(currentTag)) { const currentTagCommit = tagCommit(currentTag); if (currentTagCommit !== headCommit) { - fail( - `${product} version ${version} is already tagged as ${currentTag} at ${currentTagCommit}, not release commit ${headCommit}; merge the release-please release PR before publishing`, + const lag = releaseToolingLagStatus(currentTagCommit, headCommit, TOOL); + if (!lag.allowed) { + fail( + `${product} version ${version} is already tagged as ${currentTag} at ${currentTagCommit}, not release commit ${headCommit}.${releaseToolingLagFailureDetail(lag)}`, + ); + } + console.log( + `${product} version ${version} is tagged at ${currentTagCommit}; accepting ${headCommit} because intervening changes are release tooling only`, ); } + validateSwiftpmVersionTag(product, version, headCommit); return true; } + validateSwiftpmVersionTag(product, version, headCommit); const previousVersions = []; for (const candidatePrefix of tagPrefixes(config)) { for (const tag of productTags(candidatePrefix)) { @@ -257,11 +290,14 @@ async function validateRegistryPublication(products, graph, currentTagAtHead, he continue; } if (currentTagAtHead[product] === true) { - if (registryTargets.includes("crates-io")) { - registryAssertProductPublication(product, { requirePublished: true }); - } else { - registryReportProductPublication(product); + const { packages, missing, published } = registryQueryProductPublication(product); + if (packages.length === 0) { + console.log(`${product} has no external registry packages to check`); + continue; } + console.log( + `${product} registry completion check: ${published.length} published, ${missing.length} missing`, + ); continue; } const { packages, published } = registryQueryProductPublication(product); diff --git a/tools/release/release-graph.mjs b/tools/release/release-graph.mjs index a00e3145..3853af83 100644 --- a/tools/release/release-graph.mjs +++ b/tools/release/release-graph.mjs @@ -26,6 +26,20 @@ const GENERATED_PATH_PARTS = new Set([ "target", ]); +const RELEASE_TOOLING_LAG_PATH_PREFIXES = [ + ".github/actions/", + ".github/scripts/", + ".github/workflows/", + "tools/dev/", + "tools/policy/", + "tools/release/", + "tools/xtask/", +]; + +const RELEASE_TOOLING_LAG_FILES = new Set([ + "docs/maintainers/release-setup.md", +]); + export function fail(prefix, message) { console.error(`${prefix}: ${message}`); process.exit(1); @@ -93,6 +107,11 @@ function gitLines(args) { } } +export function gitSucceeds(args) { + const result = spawnSync("git", args, { cwd: ROOT, stdio: "ignore" }); + return result.status === 0; +} + export function gitOutput(args) { return execFileSync("git", args, { cwd: ROOT, encoding: "utf8" }).trim(); } @@ -447,10 +466,11 @@ function graphProducts(projects, prefix) { const products = {}; for (const [product, packagePath] of [...paths.entries()].sort(([left], [right]) => compareText(left, right))) { const metadata = readToml(path.join(packagePath, "release.toml"), prefix); + const version = manifest[packagePath]; if (metadata.id !== product) { fail(prefix, `${packagePath}/release.toml must declare id = ${JSON.stringify(product)}`); } - if (!(packagePath in manifest)) { + if (typeof version !== "string" || version.length === 0) { fail(prefix, `.release-please-manifest.json is missing ${packagePath}`); } products[product] = { @@ -459,6 +479,7 @@ function graphProducts(projects, prefix) { changelog_path: changelogPath(product, prefix), derived_version_files: metadata.derived_version_files ?? [], tag_prefix: tagPrefix(product, prefix), + version, version_files: versionFiles(product, prefix), }; } @@ -765,6 +786,62 @@ export function changedFilesFromRefs(baseRef, headRef, prefix = "release-graph") } } +export function releaseToolingLagPathAllowed(file) { + const candidate = file.trim().replaceAll("\\", "/"); + return ( + RELEASE_TOOLING_LAG_FILES.has(candidate) || + RELEASE_TOOLING_LAG_PATH_PREFIXES.some((prefix) => candidate.startsWith(prefix)) + ); +} + +export function releaseToolingLagStatus(sourceRef, targetRef, prefix = "release-graph") { + const sourceCommit = commitForRef(sourceRef); + const targetCommit = commitForRef(targetRef); + if (sourceCommit === targetCommit) { + return { + allowed: true, + sourceCommit, + targetCommit, + changedFiles: [], + disallowedFiles: [], + }; + } + if (!gitSucceeds(["merge-base", "--is-ancestor", sourceCommit, targetCommit])) { + return { + allowed: false, + sourceCommit, + targetCommit, + changedFiles: [], + disallowedFiles: [], + reason: `${sourceCommit} is not an ancestor of ${targetCommit}`, + }; + } + const changedFiles = changedFilesFromRefs(sourceCommit, targetCommit, prefix); + const disallowedFiles = changedFiles.filter((file) => !releaseToolingLagPathAllowed(file)); + return { + allowed: disallowedFiles.length === 0, + sourceCommit, + targetCommit, + changedFiles, + disallowedFiles, + }; +} + +export function releaseToolingLagFailureDetail(lag, { limit = 20 } = {}) { + const parts = []; + if (lag.reason) { + parts.push(lag.reason); + } + if (lag.disallowedFiles?.length > 0) { + const shown = lag.disallowedFiles.slice(0, limit); + const remaining = lag.disallowedFiles.length - shown.length; + parts.push( + `Intervening non-tooling files: ${shown.join(", ")}${remaining > 0 ? `, ... (${remaining} more)` : ""}`, + ); + } + return parts.length > 0 ? ` ${parts.join(". ")}.` : ""; +} + export function isGeneratedLocalState(candidate) { if (candidate.startsWith("target/")) { return true; @@ -984,7 +1061,11 @@ export function buildPlan(graph, files, prefix = "release-graph") { }); } -export function buildPlanFromProductTags(graph, headRef, { includeCurrentTags = false, prefix = "release-graph" } = {}) { +export function buildPlanFromProductTags( + graph, + headRef, + { includeCurrentTags = false, includeCurrentVersionTags = false, prefix = "release-graph" } = {}, +) { const products = graph.products; const direct = new Set(); const changed = new Set(); @@ -1002,6 +1083,14 @@ export function buildPlanFromProductTags(graph, headRef, { includeCurrentTags = currentTaggedProducts.add(product); continue; } + if (includeCurrentVersionTags && baseRef === `${config.tag_prefix}${config.version}`) { + const lag = releaseToolingLagStatus(tagCommit, headCommit, prefix); + if (lag.allowed) { + direct.add(product); + currentTaggedProducts.add(product); + continue; + } + } } const productFiles = changedFilesFromRefs(baseRef, headRef, prefix); for (const file of productFiles) { diff --git a/tools/release/release-publish.mjs b/tools/release/release-publish.mjs index 4e249aef..70dcd0ab 100755 --- a/tools/release/release-publish.mjs +++ b/tools/release/release-publish.mjs @@ -48,6 +48,7 @@ import { extensionSqlName, registryPackageRows, } from "./release-artifact-targets.mjs"; +import { releaseToolingLagStatus } from "./release-graph.mjs"; const TOOL = "release-publish.mjs"; const COMMANDS = new Set(["publish", "publish-dry-run"]); @@ -343,15 +344,15 @@ function gitCommit(ref) { return result.status === 0 ? result.stdout.trim() : null; } -function productTagPointsAt(product, headRef) { +function productTagReady(product, headRef) { const version = currentProductVersionSync(product, TOOL); const tagCommit = gitCommit(`${product}-v${version}`); const headCommit = gitCommit(headRef); - return tagCommit !== null && headCommit !== null && tagCommit === headCommit; + return tagCommit !== null && headCommit !== null && releaseToolingLagStatus(tagCommit, headCommit, TOOL).allowed; } function publishedRerun(product, headRef) { - return productTagPointsAt(product, headRef) && productRegistryPublished(product, null); + return productTagReady(product, headRef) && productRegistryPublished(product, null); } function extensionMavenArtifactsPublished(products) { diff --git a/tools/release/release_plan.mjs b/tools/release/release_plan.mjs index f34d8ae4..1bebf4d3 100644 --- a/tools/release/release_plan.mjs +++ b/tools/release/release_plan.mjs @@ -70,6 +70,7 @@ function parseArgs(argv) { headRef: "HEAD", fromProductTags: false, includeCurrentTags: false, + includeCurrentVersionTags: false, changedFiles: [], format: "text", }; @@ -95,6 +96,8 @@ function parseArgs(argv) { args.fromProductTags = true; } else if (value === "--include-current-tags") { args.includeCurrentTags = true; + } else if (value === "--include-current-version-tags") { + args.includeCurrentVersionTags = true; } else if (value === "--changed-file") { if (index + 1 >= argv.length) { fail("--changed-file requires a value"); @@ -112,7 +115,7 @@ function parseArgs(argv) { } else if (value.startsWith("--format=")) { args.format = value.slice("--format=".length); } else if (value === "-h" || value === "--help") { - console.log("usage: tools/release/release_plan.mjs [--base-ref REF] [--head-ref REF] [--from-product-tags] [--include-current-tags] [--changed-file PATH...] [--format text|json|github-output]"); + console.log("usage: tools/release/release_plan.mjs [--base-ref REF] [--head-ref REF] [--from-product-tags] [--include-current-tags] [--include-current-version-tags] [--changed-file PATH...] [--format text|json|github-output]"); process.exit(0); } else { fail(`unknown argument ${value}`); @@ -132,6 +135,7 @@ function planForArgs(args) { if (args.fromProductTags) { return buildPlanFromProductTags(graph, args.headRef, { includeCurrentTags: args.includeCurrentTags, + includeCurrentVersionTags: args.includeCurrentVersionTags, prefix: TOOL, }); } diff --git a/tools/release/verify_product_tag.mjs b/tools/release/verify_product_tag.mjs index 6210ea6f..358bec45 100755 --- a/tools/release/verify_product_tag.mjs +++ b/tools/release/verify_product_tag.mjs @@ -2,6 +2,7 @@ import fs from 'node:fs/promises'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; +import { releaseToolingLagFailureDetail, releaseToolingLagStatus } from './release-graph.mjs'; const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..', '..'); const decoder = new TextDecoder(); @@ -167,6 +168,11 @@ if (existing === null) { fail(`${tag} does not exist. Run release-please before release publish steps.`); } if (existing !== targetCommit) { - fail(`${tag} points at ${existing}, not release commit ${targetCommit}`); + const lag = releaseToolingLagStatus(existing, targetCommit, 'verify_product_tag.mjs'); + if (!lag.allowed) { + fail(`${tag} points at ${existing}, not release commit ${targetCommit}.${releaseToolingLagFailureDetail(lag)}`); + } + console.log(`${tag} points at ${existing}; accepting ${targetCommit} because intervening changes are release tooling only`); +} else { + console.log(`${tag} points at ${targetCommit}`); } -console.log(`${tag} points at ${targetCommit}`);