Skip to content

Commit

Permalink
Publish New Versions (#31)
Browse files Browse the repository at this point in the history
# Version Updates

Merging this PR will release new versions of the following packages
based on your change files.




# @qubit-rs/client

## [0.2.0]
-
[`032d01e`](032d01e)
run `pnpm build` before publishing (close #29)



# qubit-macros

## [0.3.0]
-
[`3f015f9`](3f015f9)
pass all CI checks



# qubit

## [0.4.0]
-
[`ea54e2b`](ea54e2b)
change exported server type to `QubitServer` (close #28)
-
[`3f015f9`](3f015f9)
pass all CI checks
### Dependencies

- Upgraded to `[email protected]`
  • Loading branch information
andogq authored May 31, 2024
2 parents 71e09bd + 27591f3 commit 1d63e76
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 27 deletions.
5 changes: 0 additions & 5 deletions .changes/client-build.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/export-name.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/pass-checks.md

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 `[email protected]`

## \[0.3.0]

### fix
Expand Down
10 changes: 4 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>" ]
repository = "https://github.com/andogq/qubit"
Expand All @@ -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"
4 changes: 4 additions & 0 deletions crates/qubit-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion crates/qubit-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
},
"dependencies": {
"@biomejs/biome": "^1.7.3"
}
},
"packageManager": "[email protected]+sha512.9df9cf27c91715646c7d675d1c9c8e41f6fce88246f1318c1aa6a1ed1aeb3c4f032fcdf4ba63cc69c4fe6d634279176b5358727d8f2cc1e65b65f43ce2f8bfb0"
}
4 changes: 4 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 8 additions & 3 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -33,7 +35,10 @@
"typescript": "^5.3.3"
},
"tsup": {
"format": ["esm", "cjs"],
"format": [
"esm",
"cjs"
],
"splitting": true,
"dts": true
}
Expand Down

0 comments on commit 1d63e76

Please sign in to comment.