Skip to content

Commit 45f02ea

Browse files
committed
Release quinn_runtime_bevy v0.2.0, bones_matchmaker_proto v0.2.0, bones_matchmaker v0.2.0
1 parent 88c1866 commit 45f02ea

File tree

4 files changed

+93
-5
lines changed

4 files changed

+93
-5
lines changed

crates/bones_matchmaker/CHANGELOG.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,45 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.2.0 (2023-06-01)
9+
10+
### New Features
11+
12+
- <csr-id-3f2e3485f9556cc68eb4c04df34d3aa2c6087330/> upgrade to Bevy 0.10.
13+
14+
### Style
15+
16+
- <csr-id-92d0a58c1cb41485a023f396aa9e1a88544d69b3/> remove unnecessary set of `BLOCKING_MAX_THREADS` ENV var.
17+
This used to be used, but isn't applicable anymore.
18+
19+
### Commit Statistics
20+
21+
<csr-read-only-do-not-edit/>
22+
23+
- 2 commits contributed to the release over the course of 43 calendar days.
24+
- 134 days passed between releases.
25+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
26+
- 2 unique issues were worked on: [#117](https://github.com/fishfolk/bones/issues/117), [#122](https://github.com/fishfolk/bones/issues/122)
27+
28+
### Commit Details
29+
30+
<csr-read-only-do-not-edit/>
31+
32+
<details><summary>view details</summary>
33+
34+
* **[#117](https://github.com/fishfolk/bones/issues/117)**
35+
- remove unnecessary set of `BLOCKING_MAX_THREADS` ENV var. ([`92d0a58`](https://github.com/fishfolk/bones/commit/92d0a58c1cb41485a023f396aa9e1a88544d69b3))
36+
* **[#122](https://github.com/fishfolk/bones/issues/122)**
37+
- upgrade to Bevy 0.10. ([`3f2e348`](https://github.com/fishfolk/bones/commit/3f2e3485f9556cc68eb4c04df34d3aa2c6087330))
38+
</details>
39+
840
## 0.1.0 (2023-01-18)
941

1042
<csr-id-27252465ad0506ff2f8c377531fa079ec64d1750/>
1143
<csr-id-49852b7f9d448334dfb66f4ab7c0310ec339f908/>
1244
<csr-id-a516a68902ebcd4c3e24b6a47b3ff79b92ff5f60/>
1345
<csr-id-ae0a761fc9b82ba2fc639c2b6f7af09fb650cd31/>
46+
<csr-id-a68cb79e6b7d3774c53c0236edf3a12175f297b5/>
1447

1548
### Chore
1649

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

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

52-
- 7 commits contributed to the release over the course of 26 calendar days.
85+
- 8 commits contributed to the release over the course of 26 calendar days.
5386
- 7 commits were understood as [conventional](https://www.conventionalcommits.org).
5487
- 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)
5588

@@ -70,6 +103,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
70103
* **[#7](https://github.com/fishfolk/bones/issues/7)**
71104
- update dependencies ([`49852b7`](https://github.com/fishfolk/bones/commit/49852b7f9d448334dfb66f4ab7c0310ec339f908))
72105
* **Uncategorized**
106+
- 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))
73107
- add github workflows for ci, docs, matchmaker, and PR linter ([`a516a68`](https://github.com/fishfolk/bones/commit/a516a68902ebcd4c3e24b6a47b3ff79b92ff5f60))
74108
- migrate crates from the jumpy repository ([`3724c69`](https://github.com/fishfolk/bones/commit/3724c69a0bb24828d1710380bb8d139e304b7955))
75109
</details>

crates/bones_matchmaker/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ version = "0.2.0"
1010
[dependencies]
1111
anyhow = "1.0"
1212
bevy_tasks = "0.10"
13-
bones_matchmaker_proto = { version = "0.2", path = "../bones_matchmaker_proto" }
13+
bones_matchmaker_proto = { version = "^0.2.0", path = "../bones_matchmaker_proto" }
1414
bytes = "1.2"
1515
clap = { version = "4.0", features = ["derive", "env"] }
1616
either = "1.8"
@@ -23,7 +23,7 @@ quinn = { version = "0.10", default-features = false, features = [
2323
"native-certs",
2424
"tls-rustls",
2525
] }
26-
quinn_runtime_bevy = { version = "0.2", path = "../quinn_runtime_bevy" }
26+
quinn_runtime_bevy = { version = "^0.2.0", path = "../quinn_runtime_bevy" }
2727
rand = "0.8"
2828
rcgen = "0.10"
2929
rustls = { version = "0.21", features = ["dangerous_configuration", "quic"] }

crates/bones_matchmaker_proto/CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,36 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.2.0 (2023-06-01)
9+
10+
### New Features
11+
12+
- <csr-id-3f2e3485f9556cc68eb4c04df34d3aa2c6087330/> upgrade to Bevy 0.10.
13+
14+
### Commit Statistics
15+
16+
<csr-read-only-do-not-edit/>
17+
18+
- 1 commit contributed to the release.
19+
- 134 days passed between releases.
20+
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
21+
- 1 unique issue was worked on: [#122](https://github.com/fishfolk/bones/issues/122)
22+
23+
### Commit Details
24+
25+
<csr-read-only-do-not-edit/>
26+
27+
<details><summary>view details</summary>
28+
29+
* **[#122](https://github.com/fishfolk/bones/issues/122)**
30+
- upgrade to Bevy 0.10. ([`3f2e348`](https://github.com/fishfolk/bones/commit/3f2e3485f9556cc68eb4c04df34d3aa2c6087330))
31+
</details>
32+
833
## 0.1.0 (2023-01-18)
934

1035
<csr-id-27252465ad0506ff2f8c377531fa079ec64d1750/>
1136
<csr-id-7444eb5ac898f97eefd3cec0c2687d4bea66da9e/>
37+
<csr-id-a68cb79e6b7d3774c53c0236edf3a12175f297b5/>
1238

1339
### Chore
1440

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

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

38-
- 5 commits contributed to the release over the course of 26 calendar days.
64+
- 6 commits contributed to the release over the course of 26 calendar days.
3965
- 5 commits were understood as [conventional](https://www.conventionalcommits.org).
4066
- 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)
4167

@@ -54,6 +80,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5480
* **[#67](https://github.com/fishfolk/bones/issues/67)**
5581
- generate changelogs for all crates. ([`a68cb79`](https://github.com/fishfolk/bones/commit/a68cb79e6b7d3774c53c0236edf3a12175f297b5))
5682
* **Uncategorized**
83+
- 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))
5784
- migrate crates from the jumpy repository ([`3724c69`](https://github.com/fishfolk/bones/commit/3724c69a0bb24828d1710380bb8d139e304b7955))
5885
</details>
5986

crates/quinn_runtime_bevy/CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,35 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.2.0 (2023-06-01)
9+
10+
### New Features
11+
12+
- <csr-id-3f2e3485f9556cc68eb4c04df34d3aa2c6087330/> upgrade to Bevy 0.10.
13+
14+
### Commit Statistics
15+
16+
<csr-read-only-do-not-edit/>
17+
18+
- 1 commit contributed to the release.
19+
- 134 days passed between releases.
20+
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
21+
- 1 unique issue was worked on: [#122](https://github.com/fishfolk/bones/issues/122)
22+
23+
### Commit Details
24+
25+
<csr-read-only-do-not-edit/>
26+
27+
<details><summary>view details</summary>
28+
29+
* **[#122](https://github.com/fishfolk/bones/issues/122)**
30+
- upgrade to Bevy 0.10. ([`3f2e348`](https://github.com/fishfolk/bones/commit/3f2e3485f9556cc68eb4c04df34d3aa2c6087330))
31+
</details>
32+
833
## 0.1.0 (2023-01-18)
934

1035
<csr-id-98ae10e7d49a0facc20e08729865c6bc1ebca37a/>
36+
<csr-id-a68cb79e6b7d3774c53c0236edf3a12175f297b5/>
1137

1238
### Documentation
1339

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

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

36-
- 4 commits contributed to the release over the course of 26 calendar days.
62+
- 5 commits contributed to the release over the course of 26 calendar days.
3763
- 4 commits were understood as [conventional](https://www.conventionalcommits.org).
3864
- 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)
3965

@@ -50,6 +76,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5076
* **[#8](https://github.com/fishfolk/bones/issues/8)**
5177
- update bevy_tasks dependency to 0.9.1 ([`98ae10e`](https://github.com/fishfolk/bones/commit/98ae10e7d49a0facc20e08729865c6bc1ebca37a))
5278
* **Uncategorized**
79+
- 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))
5380
- migrate crates from the jumpy repository ([`3724c69`](https://github.com/fishfolk/bones/commit/3724c69a0bb24828d1710380bb8d139e304b7955))
5481
</details>
5582

0 commit comments

Comments
 (0)