From 27591f34a6c3ffe0a75808dac5c3b111ced15073 Mon Sep 17 00:00:00 2001 From: andogq <63131525+andogq@users.noreply.github.com> Date: Fri, 31 May 2024 00:03:41 +0000 Subject: [PATCH] publish new versions --- .changes/client-build.md | 5 ----- .changes/export-name.md | 5 ----- .changes/pass-checks.md | 6 ------ CHANGELOG.md | 9 +++++++++ Cargo.toml | 10 ++++------ crates/qubit-macros/CHANGELOG.md | 4 ++++ crates/qubit-macros/Cargo.toml | 2 +- package.json | 3 ++- packages/client/CHANGELOG.md | 4 ++++ packages/client/package.json | 11 ++++++++--- 10 files changed, 32 insertions(+), 27 deletions(-) delete mode 100644 .changes/client-build.md delete mode 100644 .changes/export-name.md delete mode 100644 .changes/pass-checks.md diff --git a/.changes/client-build.md b/.changes/client-build.md deleted file mode 100644 index 01fb305..0000000 --- a/.changes/client-build.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@qubit-rs/client": minor ---- - -run `pnpm build` before publishing (close #29) diff --git a/.changes/export-name.md b/.changes/export-name.md deleted file mode 100644 index 6467e50..0000000 --- a/.changes/export-name.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"qubit": minor ---- - -change exported server type to `QubitServer` (close #28) diff --git a/.changes/pass-checks.md b/.changes/pass-checks.md deleted file mode 100644 index f6b2d8e..0000000 --- a/.changes/pass-checks.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"qubit": minor -"qubit-macros": minor ---- - -pass all CI checks diff --git a/CHANGELOG.md b/CHANGELOG.md index 8be67ca..ed62e1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[0.4.0] + +- [`ea54e2b`](https://github.com/andogq/qubit/commit/ea54e2b76ab11c2dae21eda5dfa7188cfcdb717a) change exported server type to `QubitServer` (close #28) +- [`3f015f9`](https://github.com/andogq/qubit/commit/3f015f95de5776d2d07472f15cada703950e658a) pass all CI checks + +### Dependencies + +- Upgraded to `qubit-macros@0.3.0` + ## \[0.3.0] ### fix diff --git a/Cargo.toml b/Cargo.toml index 091f6c3..83315c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,18 +1,16 @@ [workspace] -members = [ - "./crates/qubit-macros" -] +members = [ "./crates/qubit-macros" ] exclude = [ "./examples/authentication", "./examples/chaos", "./examples/chat-room-react/src-rust", "./examples/counter", - "./examples/hello-world", + "./examples/hello-world" ] [package] name = "qubit" -version = "0.3.0" +version = "0.4.0" edition = "2021" authors = [ "Tom Anderson " ] repository = "https://github.com/andogq/qubit" @@ -31,5 +29,5 @@ serde_json = "1.0.111" tokio = { version = "1.37.0", features = [ "rt", "rt-multi-thread" ] } tower = "0.4.13" ts-rs = "8.1.0" -qubit-macros = { version = "0.2.1", path = "./crates/qubit-macros" } +qubit-macros = { version = "0.3.0", path = "./crates/qubit-macros" } trait-variant = "0.1.2" diff --git a/crates/qubit-macros/CHANGELOG.md b/crates/qubit-macros/CHANGELOG.md index cd4371e..e7e7143 100644 --- a/crates/qubit-macros/CHANGELOG.md +++ b/crates/qubit-macros/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[0.3.0] + +- [`3f015f9`](https://github.com/andogq/qubit/commit/3f015f95de5776d2d07472f15cada703950e658a) pass all CI checks + ## \[0.2.1] - [`d2bf039`](https://github.com/andogq/qubit/commit/d2bf03992c9ea1b160497e371882b51377f4c2ec) implement `ExportType` derive for enums (close #20) diff --git a/crates/qubit-macros/Cargo.toml b/crates/qubit-macros/Cargo.toml index 8ef93b4..1e6d76b 100644 --- a/crates/qubit-macros/Cargo.toml +++ b/crates/qubit-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qubit-macros" -version = "0.2.1" +version = "0.3.0" edition = "2021" description = "Macros to accompany `qubit`." license = "MIT" diff --git a/package.json b/package.json index 7629b43..180fa1e 100644 --- a/package.json +++ b/package.json @@ -8,5 +8,6 @@ }, "dependencies": { "@biomejs/biome": "^1.7.3" - } + }, + "packageManager": "pnpm@9.1.4+sha512.9df9cf27c91715646c7d675d1c9c8e41f6fce88246f1318c1aa6a1ed1aeb3c4f032fcdf4ba63cc69c4fe6d634279176b5358727d8f2cc1e65b65f43ce2f8bfb0" } diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index af3a412..6f39d29 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[0.2.0] + +- [`032d01e`](https://github.com/andogq/qubit/commit/032d01ef832b437d21b04e9d422204d216fc0397) run `pnpm build` before publishing (close #29) + ## \[0.1.0] ### feat diff --git a/packages/client/package.json b/packages/client/package.json index d4f6d93..c2b7ca3 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,13 +1,15 @@ { "name": "@qubit-rs/client", - "version": "0.1.0", + "version": "0.2.0", "description": "", "type": "module", "scripts": { "lint": "tsc", "build": "tsup ./src/index.ts" }, - "files": ["dist"], + "files": [ + "dist" + ], "main": "./dist/index.cjs", "types": "./dist/index.d.cts", "exports": { @@ -33,7 +35,10 @@ "typescript": "^5.3.3" }, "tsup": { - "format": ["esm", "cjs"], + "format": [ + "esm", + "cjs" + ], "splitting": true, "dts": true }