Skip to content

Commit

Permalink
Release quinn_runtime_bevy v0.2.0, bones_matchmaker_proto v0.2.0, bon…
Browse files Browse the repository at this point in the history
…es_matchmaker v0.2.0
  • Loading branch information
zicklag committed Jun 1, 2023
1 parent 88c1866 commit 45f02ea
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 5 deletions.
36 changes: 35 additions & 1 deletion crates/bones_matchmaker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,45 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.2.0 (2023-06-01)

### New Features

- <csr-id-3f2e3485f9556cc68eb4c04df34d3aa2c6087330/> upgrade to Bevy 0.10.

### Style

- <csr-id-92d0a58c1cb41485a023f396aa9e1a88544d69b3/> remove unnecessary set of `BLOCKING_MAX_THREADS` ENV var.
This used to be used, but isn't applicable anymore.

### Commit Statistics

<csr-read-only-do-not-edit/>

- 2 commits contributed to the release over the course of 43 calendar days.
- 134 days passed between releases.
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
- 2 unique issues were worked on: [#117](https://github.com/fishfolk/bones/issues/117), [#122](https://github.com/fishfolk/bones/issues/122)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

* **[#117](https://github.com/fishfolk/bones/issues/117)**
- remove unnecessary set of `BLOCKING_MAX_THREADS` ENV var. ([`92d0a58`](https://github.com/fishfolk/bones/commit/92d0a58c1cb41485a023f396aa9e1a88544d69b3))
* **[#122](https://github.com/fishfolk/bones/issues/122)**
- upgrade to Bevy 0.10. ([`3f2e348`](https://github.com/fishfolk/bones/commit/3f2e3485f9556cc68eb4c04df34d3aa2c6087330))
</details>

## 0.1.0 (2023-01-18)

<csr-id-27252465ad0506ff2f8c377531fa079ec64d1750/>
<csr-id-49852b7f9d448334dfb66f4ab7c0310ec339f908/>
<csr-id-a516a68902ebcd4c3e24b6a47b3ff79b92ff5f60/>
<csr-id-ae0a761fc9b82ba2fc639c2b6f7af09fb650cd31/>
<csr-id-a68cb79e6b7d3774c53c0236edf3a12175f297b5/>

### Chore

Expand Down Expand Up @@ -49,7 +82,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<csr-read-only-do-not-edit/>

- 7 commits contributed to the release over the course of 26 calendar days.
- 8 commits contributed to the release over the course of 26 calendar days.
- 7 commits were understood as [conventional](https://www.conventionalcommits.org).
- 5 unique issues were worked on: [#37](https://github.com/fishfolk/bones/issues/37), [#63](https://github.com/fishfolk/bones/issues/63), [#65](https://github.com/fishfolk/bones/issues/65), [#67](https://github.com/fishfolk/bones/issues/67), [#7](https://github.com/fishfolk/bones/issues/7)

Expand All @@ -70,6 +103,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* **[#7](https://github.com/fishfolk/bones/issues/7)**
- update dependencies ([`49852b7`](https://github.com/fishfolk/bones/commit/49852b7f9d448334dfb66f4ab7c0310ec339f908))
* **Uncategorized**
- Release bones_matchmaker_proto v0.1.0, quinn_runtime_bevy v0.1.0, bones_matchmaker v0.1.0 ([`c6d682f`](https://github.com/fishfolk/bones/commit/c6d682fa4f428f9cb9c963c93061bd477f1d281e))
- add github workflows for ci, docs, matchmaker, and PR linter ([`a516a68`](https://github.com/fishfolk/bones/commit/a516a68902ebcd4c3e24b6a47b3ff79b92ff5f60))
- migrate crates from the jumpy repository ([`3724c69`](https://github.com/fishfolk/bones/commit/3724c69a0bb24828d1710380bb8d139e304b7955))
</details>
Expand Down
4 changes: 2 additions & 2 deletions crates/bones_matchmaker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version = "0.2.0"
[dependencies]
anyhow = "1.0"
bevy_tasks = "0.10"
bones_matchmaker_proto = { version = "0.2", path = "../bones_matchmaker_proto" }
bones_matchmaker_proto = { version = "^0.2.0", path = "../bones_matchmaker_proto" }
bytes = "1.2"
clap = { version = "4.0", features = ["derive", "env"] }
either = "1.8"
Expand All @@ -23,7 +23,7 @@ quinn = { version = "0.10", default-features = false, features = [
"native-certs",
"tls-rustls",
] }
quinn_runtime_bevy = { version = "0.2", path = "../quinn_runtime_bevy" }
quinn_runtime_bevy = { version = "^0.2.0", path = "../quinn_runtime_bevy" }
rand = "0.8"
rcgen = "0.10"
rustls = { version = "0.21", features = ["dangerous_configuration", "quic"] }
Expand Down
29 changes: 28 additions & 1 deletion crates/bones_matchmaker_proto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,36 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.2.0 (2023-06-01)

### New Features

- <csr-id-3f2e3485f9556cc68eb4c04df34d3aa2c6087330/> upgrade to Bevy 0.10.

### Commit Statistics

<csr-read-only-do-not-edit/>

- 1 commit contributed to the release.
- 134 days passed between releases.
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
- 1 unique issue was worked on: [#122](https://github.com/fishfolk/bones/issues/122)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

* **[#122](https://github.com/fishfolk/bones/issues/122)**
- upgrade to Bevy 0.10. ([`3f2e348`](https://github.com/fishfolk/bones/commit/3f2e3485f9556cc68eb4c04df34d3aa2c6087330))
</details>

## 0.1.0 (2023-01-18)

<csr-id-27252465ad0506ff2f8c377531fa079ec64d1750/>
<csr-id-7444eb5ac898f97eefd3cec0c2687d4bea66da9e/>
<csr-id-a68cb79e6b7d3774c53c0236edf3a12175f297b5/>

### Chore

Expand All @@ -35,7 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<csr-read-only-do-not-edit/>

- 5 commits contributed to the release over the course of 26 calendar days.
- 6 commits contributed to the release over the course of 26 calendar days.
- 5 commits were understood as [conventional](https://www.conventionalcommits.org).
- 4 unique issues were worked on: [#14](https://github.com/fishfolk/bones/issues/14), [#37](https://github.com/fishfolk/bones/issues/37), [#65](https://github.com/fishfolk/bones/issues/65), [#67](https://github.com/fishfolk/bones/issues/67)

Expand All @@ -54,6 +80,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* **[#67](https://github.com/fishfolk/bones/issues/67)**
- generate changelogs for all crates. ([`a68cb79`](https://github.com/fishfolk/bones/commit/a68cb79e6b7d3774c53c0236edf3a12175f297b5))
* **Uncategorized**
- Release bones_matchmaker_proto v0.1.0, quinn_runtime_bevy v0.1.0, bones_matchmaker v0.1.0 ([`c6d682f`](https://github.com/fishfolk/bones/commit/c6d682fa4f428f9cb9c963c93061bd477f1d281e))
- migrate crates from the jumpy repository ([`3724c69`](https://github.com/fishfolk/bones/commit/3724c69a0bb24828d1710380bb8d139e304b7955))
</details>

29 changes: 28 additions & 1 deletion crates/quinn_runtime_bevy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,35 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.2.0 (2023-06-01)

### New Features

- <csr-id-3f2e3485f9556cc68eb4c04df34d3aa2c6087330/> upgrade to Bevy 0.10.

### Commit Statistics

<csr-read-only-do-not-edit/>

- 1 commit contributed to the release.
- 134 days passed between releases.
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
- 1 unique issue was worked on: [#122](https://github.com/fishfolk/bones/issues/122)

### Commit Details

<csr-read-only-do-not-edit/>

<details><summary>view details</summary>

* **[#122](https://github.com/fishfolk/bones/issues/122)**
- upgrade to Bevy 0.10. ([`3f2e348`](https://github.com/fishfolk/bones/commit/3f2e3485f9556cc68eb4c04df34d3aa2c6087330))
</details>

## 0.1.0 (2023-01-18)

<csr-id-98ae10e7d49a0facc20e08729865c6bc1ebca37a/>
<csr-id-a68cb79e6b7d3774c53c0236edf3a12175f297b5/>

### Documentation

Expand All @@ -33,7 +59,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<csr-read-only-do-not-edit/>

- 4 commits contributed to the release over the course of 26 calendar days.
- 5 commits contributed to the release over the course of 26 calendar days.
- 4 commits were understood as [conventional](https://www.conventionalcommits.org).
- 3 unique issues were worked on: [#37](https://github.com/fishfolk/bones/issues/37), [#67](https://github.com/fishfolk/bones/issues/67), [#8](https://github.com/fishfolk/bones/issues/8)

Expand All @@ -50,6 +76,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* **[#8](https://github.com/fishfolk/bones/issues/8)**
- update bevy_tasks dependency to 0.9.1 ([`98ae10e`](https://github.com/fishfolk/bones/commit/98ae10e7d49a0facc20e08729865c6bc1ebca37a))
* **Uncategorized**
- Release bones_matchmaker_proto v0.1.0, quinn_runtime_bevy v0.1.0, bones_matchmaker v0.1.0 ([`c6d682f`](https://github.com/fishfolk/bones/commit/c6d682fa4f428f9cb9c963c93061bd477f1d281e))
- migrate crates from the jumpy repository ([`3724c69`](https://github.com/fishfolk/bones/commit/3724c69a0bb24828d1710380bb8d139e304b7955))
</details>

0 comments on commit 45f02ea

Please sign in to comment.