Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"src/runtimes/liboliphaunt/native": "0.1.1",
"src/sdks/rust": "0.1.1",
"src/runtimes/broker": "0.1.1",
"src/runtimes/node-direct": "0.1.1",
"src/runtimes/wasix-napi": "0.0.0",
"src/sdks/swift": "0.6.1",
"src/sdks/kotlin": "0.1.1",
"src/sdks/react-native": "0.1.1",
"src/sdks/js": "0.1.1",
"src/extensions/external/pg_hashids": "0.1.1",
"src/extensions/external/pg_ivm": "0.1.1",
"src/extensions/external/pg_textsearch": "0.1.1",
"src/extensions/external/pg_uuidv7": "0.1.1",
"src/extensions/external/pgtap": "0.1.1",
"src/extensions/external/postgis": "0.1.1",
"src/extensions/external/vector": "0.1.1",
"src/runtimes/liboliphaunt/wasix": "0.1.1",
"src/runtimes/liboliphaunt/wasix-postmaster": "0.0.0",
"src/bindings/wasix-rust/crates/oliphaunt-wasix": "0.1.1",
"src/bindings/wasix-ts": "0.0.0"
"src/runtimes/liboliphaunt/native": "0.2.0",
"src/sdks/rust": "0.2.0",
"src/runtimes/broker": "0.2.0",
"src/runtimes/node-direct": "0.2.0",
"src/runtimes/wasix-napi": "0.1.0",
"src/sdks/swift": "0.7.0",
"src/sdks/kotlin": "0.2.0",
"src/sdks/react-native": "0.2.0",
"src/sdks/js": "0.2.0",
"src/extensions/external/pg_hashids": "0.2.0",
"src/extensions/external/pg_ivm": "0.2.0",
"src/extensions/external/pg_textsearch": "0.2.0",
"src/extensions/external/pg_uuidv7": "0.2.0",
"src/extensions/external/pgtap": "0.2.0",
"src/extensions/external/postgis": "0.2.0",
"src/extensions/external/vector": "0.2.0",
"src/runtimes/liboliphaunt/wasix": "0.2.0",
"src/runtimes/liboliphaunt/wasix-postmaster": "0.1.0",
"src/bindings/wasix-rust/crates/oliphaunt-wasix": "0.2.0",
"src/bindings/wasix-ts": "0.1.0"
}
26 changes: 26 additions & 0 deletions src/bindings/wasix-rust/crates/oliphaunt-wasix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,32 @@
- Keep the direct server handle after `close(&mut self)`, add `is_closed()`,
and replay the first terminal close result on repeated calls.

## [0.2.0](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-wasix-rust-v0.1.1...oliphaunt-wasix-rust-v0.2.0) (2026-09-02)


### ⚠ BREAKING CHANGES

* **wasix-ts:** run host runtimes through Rust Node-API ([#156](https://github.com/f0rr0/oliphaunt/issues/156))
* **sdk:** unify embedded PostgreSQL public APIs ([#153](https://github.com/f0rr0/oliphaunt/issues/153))
* Rust WASIX removes temporary/application-data storage variants, and browser IndexedDB uses the new per-database v3 layout without migrating prior generations.
* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127))

### Features

* **sdk:** unify embedded PostgreSQL public APIs ([#153](https://github.com/f0rr0/oliphaunt/issues/153)) ([4384d1b](https://github.com/f0rr0/oliphaunt/commit/4384d1bdfafee07e4e1963ac68027b4bcf002a1e))
* unify native and WASIX runtimes and SDKs ([#129](https://github.com/f0rr0/oliphaunt/issues/129)) ([fae2bd7](https://github.com/f0rr0/oliphaunt/commit/fae2bd7bde00ae436d9b62ba6a37d919679ac790))
* **wasix-ts:** run host runtimes through Rust Node-API ([#156](https://github.com/f0rr0/oliphaunt/issues/156)) ([28e07be](https://github.com/f0rr0/oliphaunt/commit/28e07be782388915b28ad3fd30e3e78143710d28))


### Performance Improvements

* **wasix:** accelerate regular-file seek end ([#162](https://github.com/f0rr0/oliphaunt/issues/162)) ([b411aa3](https://github.com/f0rr0/oliphaunt/commit/b411aa3ed0707ed8c49f2ef1583241d9ceb66335))


### Code Refactoring

* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127)) ([c45082d](https://github.com/f0rr0/oliphaunt/commit/c45082dc522f04ed0f020464282ed79150f83ecc))

## [0.1.1](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-wasix-rust-v0.1.0...oliphaunt-wasix-rust-v0.1.1) (2026-08-08)


Expand Down
2 changes: 1 addition & 1 deletion src/bindings/wasix-rust/crates/oliphaunt-wasix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oliphaunt-wasix"
version = "0.1.1"
version = "0.2.0"
edition = "2024"
rust-version = "1.93"
description = "Embedded PostgreSQL 18 for Rust with synchronous and asynchronous APIs."
Expand Down
27 changes: 27 additions & 0 deletions src/bindings/wasix-ts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog

## 0.1.0 (2026-09-02)


### ⚠ BREAKING CHANGES

* **wasix-ts:** run host runtimes through Rust Node-API ([#156](https://github.com/f0rr0/oliphaunt/issues/156))
* **sdk:** unify embedded PostgreSQL public APIs ([#153](https://github.com/f0rr0/oliphaunt/issues/153))
* Rust WASIX removes temporary/application-data storage variants, and browser IndexedDB uses the new per-database v3 layout without migrating prior generations.

### Features

* **sdk:** unify embedded PostgreSQL public APIs ([#153](https://github.com/f0rr0/oliphaunt/issues/153)) ([4384d1b](https://github.com/f0rr0/oliphaunt/commit/4384d1bdfafee07e4e1963ac68027b4bcf002a1e))
* unify native and WASIX runtimes and SDKs ([#129](https://github.com/f0rr0/oliphaunt/issues/129)) ([fae2bd7](https://github.com/f0rr0/oliphaunt/commit/fae2bd7bde00ae436d9b62ba6a37d919679ac790))
* **wasix-ts:** run host runtimes through Rust Node-API ([#156](https://github.com/f0rr0/oliphaunt/issues/156)) ([28e07be](https://github.com/f0rr0/oliphaunt/commit/28e07be782388915b28ad3fd30e3e78143710d28))


### Bug Fixes

* **ci:** preserve native lifecycle server sessions ([#165](https://github.com/f0rr0/oliphaunt/issues/165)) ([b8cab0b](https://github.com/f0rr0/oliphaunt/commit/b8cab0be2b86c6b9fab4c279add89113c5797d23))


### Performance Improvements

* **js:** streamline exec response handling ([#158](https://github.com/f0rr0/oliphaunt/issues/158)) ([5eaf05b](https://github.com/f0rr0/oliphaunt/commit/5eaf05b8a8d21bd974b9fcb6d618103be5689151))
* **wasix:** preserve and accelerate seek end ([#154](https://github.com/f0rr0/oliphaunt/issues/154)) ([169852f](https://github.com/f0rr0/oliphaunt/commit/169852f22d1c5eab4cfd30c17ccca014b8d84592))
2 changes: 1 addition & 1 deletion src/bindings/wasix-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oliphaunt/wasix-ts",
"version": "0.0.0",
"version": "0.1.0",
"description": "Portable Oliphaunt WASIX TypeScript SDK for browsers, Node.js, Bun, Deno, and Electron.",
"license": "MIT",
"type": "module",
Expand Down
17 changes: 17 additions & 0 deletions src/extensions/external/pg_hashids/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.2.0](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-pg-hashids-v0.1.1...oliphaunt-extension-pg-hashids-v0.2.0) (2026-09-02)


### ⚠ BREAKING CHANGES

* Rust WASIX removes temporary/application-data storage variants, and browser IndexedDB uses the new per-database v3 layout without migrating prior generations.
* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127))

### Features

* unify native and WASIX runtimes and SDKs ([#129](https://github.com/f0rr0/oliphaunt/issues/129)) ([fae2bd7](https://github.com/f0rr0/oliphaunt/commit/fae2bd7bde00ae436d9b62ba6a37d919679ac790))


### Code Refactoring

* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127)) ([c45082d](https://github.com/f0rr0/oliphaunt/commit/c45082dc522f04ed0f020464282ed79150f83ecc))

## [0.1.1](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-pg-hashids-v0.1.0...oliphaunt-extension-pg-hashids-v0.1.1) (2026-08-08)


Expand Down
2 changes: 1 addition & 1 deletion src/extensions/external/pg_hashids/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.2.0
17 changes: 17 additions & 0 deletions src/extensions/external/pg_ivm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.2.0](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-pg-ivm-v0.1.1...oliphaunt-extension-pg-ivm-v0.2.0) (2026-09-02)


### ⚠ BREAKING CHANGES

* Rust WASIX removes temporary/application-data storage variants, and browser IndexedDB uses the new per-database v3 layout without migrating prior generations.
* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127))

### Features

* unify native and WASIX runtimes and SDKs ([#129](https://github.com/f0rr0/oliphaunt/issues/129)) ([fae2bd7](https://github.com/f0rr0/oliphaunt/commit/fae2bd7bde00ae436d9b62ba6a37d919679ac790))


### Code Refactoring

* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127)) ([c45082d](https://github.com/f0rr0/oliphaunt/commit/c45082dc522f04ed0f020464282ed79150f83ecc))

## [0.1.1](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-pg-ivm-v0.1.0...oliphaunt-extension-pg-ivm-v0.1.1) (2026-08-08)


Expand Down
2 changes: 1 addition & 1 deletion src/extensions/external/pg_ivm/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.2.0
17 changes: 17 additions & 0 deletions src/extensions/external/pg_textsearch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.2.0](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-pg-textsearch-v0.1.1...oliphaunt-extension-pg-textsearch-v0.2.0) (2026-09-02)


### ⚠ BREAKING CHANGES

* Rust WASIX removes temporary/application-data storage variants, and browser IndexedDB uses the new per-database v3 layout without migrating prior generations.
* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127))

### Features

* unify native and WASIX runtimes and SDKs ([#129](https://github.com/f0rr0/oliphaunt/issues/129)) ([fae2bd7](https://github.com/f0rr0/oliphaunt/commit/fae2bd7bde00ae436d9b62ba6a37d919679ac790))


### Code Refactoring

* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127)) ([c45082d](https://github.com/f0rr0/oliphaunt/commit/c45082dc522f04ed0f020464282ed79150f83ecc))

## [0.1.1](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-pg-textsearch-v0.1.0...oliphaunt-extension-pg-textsearch-v0.1.1) (2026-08-08)


Expand Down
2 changes: 1 addition & 1 deletion src/extensions/external/pg_textsearch/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.2.0
17 changes: 17 additions & 0 deletions src/extensions/external/pg_uuidv7/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.2.0](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-pg-uuidv7-v0.1.1...oliphaunt-extension-pg-uuidv7-v0.2.0) (2026-09-02)


### ⚠ BREAKING CHANGES

* Rust WASIX removes temporary/application-data storage variants, and browser IndexedDB uses the new per-database v3 layout without migrating prior generations.
* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127))

### Features

* unify native and WASIX runtimes and SDKs ([#129](https://github.com/f0rr0/oliphaunt/issues/129)) ([fae2bd7](https://github.com/f0rr0/oliphaunt/commit/fae2bd7bde00ae436d9b62ba6a37d919679ac790))


### Code Refactoring

* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127)) ([c45082d](https://github.com/f0rr0/oliphaunt/commit/c45082dc522f04ed0f020464282ed79150f83ecc))

## [0.1.1](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-pg-uuidv7-v0.1.0...oliphaunt-extension-pg-uuidv7-v0.1.1) (2026-08-08)


Expand Down
2 changes: 1 addition & 1 deletion src/extensions/external/pg_uuidv7/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.2.0
17 changes: 17 additions & 0 deletions src/extensions/external/pgtap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.2.0](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-pgtap-v0.1.1...oliphaunt-extension-pgtap-v0.2.0) (2026-09-02)


### ⚠ BREAKING CHANGES

* Rust WASIX removes temporary/application-data storage variants, and browser IndexedDB uses the new per-database v3 layout without migrating prior generations.
* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127))

### Features

* unify native and WASIX runtimes and SDKs ([#129](https://github.com/f0rr0/oliphaunt/issues/129)) ([fae2bd7](https://github.com/f0rr0/oliphaunt/commit/fae2bd7bde00ae436d9b62ba6a37d919679ac790))


### Code Refactoring

* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127)) ([c45082d](https://github.com/f0rr0/oliphaunt/commit/c45082dc522f04ed0f020464282ed79150f83ecc))

## [0.1.1](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-pgtap-v0.1.0...oliphaunt-extension-pgtap-v0.1.1) (2026-08-08)


Expand Down
2 changes: 1 addition & 1 deletion src/extensions/external/pgtap/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.2.0
17 changes: 17 additions & 0 deletions src/extensions/external/postgis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.2.0](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-postgis-v0.1.1...oliphaunt-extension-postgis-v0.2.0) (2026-09-02)


### ⚠ BREAKING CHANGES

* Rust WASIX removes temporary/application-data storage variants, and browser IndexedDB uses the new per-database v3 layout without migrating prior generations.
* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127))

### Features

* unify native and WASIX runtimes and SDKs ([#129](https://github.com/f0rr0/oliphaunt/issues/129)) ([fae2bd7](https://github.com/f0rr0/oliphaunt/commit/fae2bd7bde00ae436d9b62ba6a37d919679ac790))


### Code Refactoring

* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127)) ([c45082d](https://github.com/f0rr0/oliphaunt/commit/c45082dc522f04ed0f020464282ed79150f83ecc))

## [0.1.1](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-postgis-v0.1.0...oliphaunt-extension-postgis-v0.1.1) (2026-08-08)


Expand Down
2 changes: 1 addition & 1 deletion src/extensions/external/postgis/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.2.0
17 changes: 17 additions & 0 deletions src/extensions/external/vector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.2.0](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-vector-v0.1.1...oliphaunt-extension-vector-v0.2.0) (2026-09-02)


### ⚠ BREAKING CHANGES

* Rust WASIX removes temporary/application-data storage variants, and browser IndexedDB uses the new per-database v3 layout without migrating prior generations.
* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127))

### Features

* unify native and WASIX runtimes and SDKs ([#129](https://github.com/f0rr0/oliphaunt/issues/129)) ([fae2bd7](https://github.com/f0rr0/oliphaunt/commit/fae2bd7bde00ae436d9b62ba6a37d919679ac790))


### Code Refactoring

* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127)) ([c45082d](https://github.com/f0rr0/oliphaunt/commit/c45082dc522f04ed0f020464282ed79150f83ecc))

## [0.1.1](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-extension-vector-v0.1.0...oliphaunt-extension-vector-v0.1.1) (2026-08-08)


Expand Down
2 changes: 1 addition & 1 deletion src/extensions/external/vector/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.2.0
19 changes: 19 additions & 0 deletions src/runtimes/broker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [0.2.0](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-broker-v0.1.1...oliphaunt-broker-v0.2.0) (2026-09-02)


### ⚠ BREAKING CHANGES

* **sdk:** unify embedded PostgreSQL public APIs ([#153](https://github.com/f0rr0/oliphaunt/issues/153))
* Rust WASIX removes temporary/application-data storage variants, and browser IndexedDB uses the new per-database v3 layout without migrating prior generations.
* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127))

### Features

* **sdk:** unify embedded PostgreSQL public APIs ([#153](https://github.com/f0rr0/oliphaunt/issues/153)) ([4384d1b](https://github.com/f0rr0/oliphaunt/commit/4384d1bdfafee07e4e1963ac68027b4bcf002a1e))
* unify native and WASIX runtimes and SDKs ([#129](https://github.com/f0rr0/oliphaunt/issues/129)) ([fae2bd7](https://github.com/f0rr0/oliphaunt/commit/fae2bd7bde00ae436d9b62ba6a37d919679ac790))


### Code Refactoring

* **release:** simplify releases and make contrib runtime-owned ([#127](https://github.com/f0rr0/oliphaunt/issues/127)) ([c45082d](https://github.com/f0rr0/oliphaunt/commit/c45082dc522f04ed0f020464282ed79150f83ecc))

## [0.1.1](https://github.com/f0rr0/oliphaunt/compare/oliphaunt-broker-v0.1.0...oliphaunt-broker-v0.1.1) (2026-08-08)


Expand Down
2 changes: 1 addition & 1 deletion src/runtimes/broker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oliphaunt-broker"
version = "0.1.1"
version = "0.2.0"
edition = "2024"
rust-version = "1.93"
description = "Oliphaunt broker helper process for process-isolated embedded PostgreSQL."
Expand Down
2 changes: 1 addition & 1 deletion src/runtimes/broker/crates/linux-arm64-gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oliphaunt-broker-linux-arm64-gnu"
version = "0.1.1"
version = "0.2.0"
edition = "2024"
rust-version = "1.93"
description = "Cargo artifact crate for the linux-arm64-gnu oliphaunt-broker helper binary."
Expand Down
2 changes: 1 addition & 1 deletion src/runtimes/broker/crates/linux-x64-gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oliphaunt-broker-linux-x64-gnu"
version = "0.1.1"
version = "0.2.0"
edition = "2024"
rust-version = "1.93"
description = "Cargo artifact crate for the linux-x64-gnu oliphaunt-broker helper binary."
Expand Down
2 changes: 1 addition & 1 deletion src/runtimes/broker/crates/macos-arm64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oliphaunt-broker-macos-arm64"
version = "0.1.1"
version = "0.2.0"
edition = "2024"
rust-version = "1.93"
description = "Cargo artifact crate for the macos-arm64 oliphaunt-broker helper binary."
Expand Down
2 changes: 1 addition & 1 deletion src/runtimes/broker/crates/windows-x64-msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oliphaunt-broker-windows-x64-msvc"
version = "0.1.1"
version = "0.2.0"
edition = "2024"
rust-version = "1.93"
description = "Cargo artifact crate for the windows-x64-msvc oliphaunt-broker helper binary."
Expand Down
2 changes: 1 addition & 1 deletion src/runtimes/broker/packages/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oliphaunt/broker-darwin-arm64",
"version": "0.1.1",
"version": "0.2.0",
"description": "macOS arm64 oliphaunt-broker helper binary.",
"license": "MIT AND ISC AND Unicode-3.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/runtimes/broker/packages/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oliphaunt/broker-linux-arm64-gnu",
"version": "0.1.1",
"version": "0.2.0",
"description": "Linux arm64 glibc oliphaunt-broker helper binary.",
"license": "MIT AND ISC AND Unicode-3.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/runtimes/broker/packages/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oliphaunt/broker-linux-x64-gnu",
"version": "0.1.1",
"version": "0.2.0",
"description": "Linux x64 glibc oliphaunt-broker helper binary.",
"license": "MIT AND ISC AND Unicode-3.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/runtimes/broker/packages/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oliphaunt/broker-win32-x64-msvc",
"version": "0.1.1",
"version": "0.2.0",
"description": "Windows x64 MSVC oliphaunt-broker helper binary.",
"license": "MIT AND ISC AND Unicode-3.0",
"type": "module",
Expand Down
Loading
Loading