Skip to content

Commit

Permalink
chore: release (#51)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Dec 3, 2024
1 parent ed97673 commit 96ac242
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
6 changes: 6 additions & 0 deletions web-transport-quinn/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/kixelated/web-transport-rs/compare/web-transport-quinn-v0.3.4...web-transport-quinn-v0.4.0) - 2024-12-03

### Other

- Make a `Client` class to make configuration easier. ([#50](https://github.com/kixelated/web-transport-rs/pull/50))

## [0.3.4](https://github.com/kixelated/web-transport-rs/compare/web-transport-quinn-v0.3.3...web-transport-quinn-v0.3.4) - 2024-10-26

### Other
Expand Down
2 changes: 1 addition & 1 deletion web-transport-quinn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Luke Curley"]
repository = "https://github.com/kixelated/web-transport-rs"
license = "MIT OR Apache-2.0"

version = "0.3.4"
version = "0.4.0"
edition = "2021"

keywords = ["quic", "http3", "webtransport"]
Expand Down
6 changes: 6 additions & 0 deletions web-transport-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.2](https://github.com/kixelated/web-transport-rs/compare/web-transport-wasm-v0.4.1...web-transport-wasm-v0.4.2) - 2024-12-03

### Other

- Make a `Client` class to make configuration easier. ([#50](https://github.com/kixelated/web-transport-rs/pull/50))

## [0.4.1](https://github.com/kixelated/web-transport-rs/compare/web-transport-wasm-v0.4.0...web-transport-wasm-v0.4.1) - 2024-10-26

### Other
Expand Down
2 changes: 1 addition & 1 deletion web-transport-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Luke Curley"]
repository = "https://github.com/kixelated/web-transport-rs"
license = "MIT OR Apache-2.0"

version = "0.4.1"
version = "0.4.2"
edition = "2021"

keywords = ["quic", "http3", "webtransport"]
Expand Down
6 changes: 6 additions & 0 deletions web-transport/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0](https://github.com/kixelated/web-transport-rs/compare/web-transport-v0.6.2...web-transport-v0.7.0) - 2024-12-03

### Other

- Make a `Client` class to make configuration easier. ([#50](https://github.com/kixelated/web-transport-rs/pull/50))

## [0.6.2](https://github.com/kixelated/web-transport-rs/compare/web-transport-v0.6.1...web-transport-v0.6.2) - 2024-10-27

### Other
Expand Down
6 changes: 3 additions & 3 deletions web-transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Luke Curley"]
repository = "https://github.com/kixelated/web-transport-rs"
license = "MIT OR Apache-2.0"

version = "0.6.2"
version = "0.7.0"
edition = "2021"

keywords = ["quic", "http3", "webtransport"]
Expand All @@ -19,7 +19,7 @@ thiserror = "1"
url = "2"

[target.'cfg(target_arch = "wasm32")'.dependencies]
web-transport-wasm = { version = "0.4.1", path = "../web-transport-wasm" }
web-transport-wasm = { version = "0.4.2", path = "../web-transport-wasm" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
web-transport-quinn = { version = "0.3.4", path = "../web-transport-quinn" }
web-transport-quinn = { version = "0.4.0", path = "../web-transport-quinn" }

0 comments on commit 96ac242

Please sign in to comment.