Skip to content

Commit 88c1866

Browse files
committed
Release type_ulid_macros v0.2.0, type_ulid v0.2.0, bones_bevy_utils v0.2.0, bones_ecs v0.2.0, bones_asset v0.2.0, bones_input v0.2.0, bones_render v0.2.0, bones_lib v0.2.0, bones_bevy_asset v0.2.0, bones_bevy_renderer v0.2.0
1 parent 3f18051 commit 88c1866

File tree

19 files changed

+119
-76
lines changed

19 files changed

+119
-76
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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-
## Unreleased
8+
## 0.2.0 (2023-06-01)
99

1010
### New Features
1111

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

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

29-
- 3 commits contributed to the release over the course of 118 calendar days.
29+
- 3 commits contributed to the release over the course of 119 calendar days.
3030
- 133 days passed between releases.
3131
- 3 commits were understood as [conventional](https://www.conventionalcommits.org).
3232
- 3 unique issues were worked on: [#104](https://github.com/fishfolk/bones/issues/104), [#84](https://github.com/fishfolk/bones/issues/84), [#95](https://github.com/fishfolk/bones/issues/95)
@@ -57,12 +57,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5757

5858
- <csr-id-88b47965fb59d4ee2c1748de7d839e08072ae0b2/> add camera shake.
5959
Adds systems and components for easily adding camera shake.
60-
60+
6161
Ported from the Bevy implementation in `bones_camera_shake`.
6262
- <csr-id-020c1244cbd27f0a32b8fad6a314bea81ef0e449/> add animation module.
6363
- <csr-id-ec30508e66dbc4c436a052754f1168419ad20c1a/> add `bones_camera_shake` crate
6464
Adds the camera shake functionality from [Bomby](https://github.com/fishfolk/bomby).
65-
65+
6666
For the time being it uses `bevy_ecs` and not `bones_ecs`.
6767
- <csr-id-3724c69a0bb24828d1710380bb8d139e304b7955/> migrate crates from the jumpy repository
6868

@@ -71,7 +71,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7171
- <csr-id-9de77ff7c9ddcb5af5737553384becbb9483b665/> fix sprite animation bug.
7272
Fixes the behavior when an atlas sprite's current index is less
7373
than the starting index of an animated sprite.
74-
74+
7575
Previously it would play the animation from wherever the current
7676
index happened to be, but it was supposed to skip to the animation
7777
start frame.
@@ -93,7 +93,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9393
Renames `bones` to `bones_lib` ( mostly because `bones` was already taken )
9494
and adds the `bones_asset`, `bones_bevy_renderer`, `bones_input`, and
9595
`bones_render` crates.
96-
96+
9797
This sets up the overall structure for the bones library,
9898
though changes to some aspects of the design are likely to change.
9999

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ bevy = ["bones_asset/bevy", "bones_render/bevy", "dep:bones_bevy_utils"]
1818
serde = ["dep:serde", "bones_render/serde", "bones_ecs/serde"]
1919

2020
[dependencies]
21-
bones_asset = { version = "0.2", path = "./crates/bones_asset" }
22-
bones_bevy_utils = { version = "0.2", path = "./crates/bones_bevy_utils", optional = true }
23-
bones_ecs = { version = "0.2", path = "./crates/bones_ecs" }
24-
bones_input = { version = "0.2", path = "./crates/bones_input" }
25-
bones_render = { version = "0.2", path = "./crates/bones_render" }
26-
type_ulid = { version = "0.2", path = "./crates/type_ulid" }
21+
bones_asset = { version = "^0.2.0", path = "./crates/bones_asset" }
22+
bones_bevy_utils = { version = "^0.2.0", path = "./crates/bones_bevy_utils", optional = true }
23+
bones_ecs = { version = "^0.2.0", path = "./crates/bones_ecs" }
24+
bones_input = { version = "^0.2.0", path = "./crates/bones_input" }
25+
bones_render = { version = "^0.2.0", path = "./crates/bones_render" }
26+
type_ulid = { version = "^0.2.0", path = "./crates/type_ulid" }
2727

2828
noise = "0.8"
2929
serde = { version = "1.0", features = ["derive"], optional = true }

crates/bones_asset/CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,18 @@ 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-
## Unreleased
8+
## 0.2.0 (2023-06-01)
99

1010
<csr-id-6825d579672fa508a4c67aa40efa970909f5ff54/>
1111

1212
### Chore
1313

1414
- <csr-id-6825d579672fa508a4c67aa40efa970909f5ff54/> update bones lib versioning.
1515

16+
### Documentation
17+
18+
- <csr-id-3f18051e023a4deb676a5f895f1478beda513f04/> update changelogs.
19+
1620
### New Features
1721

1822
- <csr-id-3f2e3485f9556cc68eb4c04df34d3aa2c6087330/> upgrade to Bevy 0.10.
@@ -36,10 +40,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3640

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

39-
- 4 commits contributed to the release over the course of 103 calendar days.
43+
- 5 commits contributed to the release over the course of 103 calendar days.
4044
- 133 days passed between releases.
41-
- 4 commits were understood as [conventional](https://www.conventionalcommits.org).
42-
- 4 unique issues were worked on: [#101](https://github.com/fishfolk/bones/issues/101), [#106](https://github.com/fishfolk/bones/issues/106), [#111](https://github.com/fishfolk/bones/issues/111), [#122](https://github.com/fishfolk/bones/issues/122)
45+
- 5 commits were understood as [conventional](https://www.conventionalcommits.org).
46+
- 5 unique issues were worked on: [#101](https://github.com/fishfolk/bones/issues/101), [#106](https://github.com/fishfolk/bones/issues/106), [#111](https://github.com/fishfolk/bones/issues/111), [#122](https://github.com/fishfolk/bones/issues/122), [#124](https://github.com/fishfolk/bones/issues/124)
4347

4448
### Commit Details
4549

@@ -55,6 +59,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5559
- update bones lib versioning. ([`6825d57`](https://github.com/fishfolk/bones/commit/6825d579672fa508a4c67aa40efa970909f5ff54))
5660
* **[#122](https://github.com/fishfolk/bones/issues/122)**
5761
- upgrade to Bevy 0.10. ([`3f2e348`](https://github.com/fishfolk/bones/commit/3f2e3485f9556cc68eb4c04df34d3aa2c6087330))
62+
* **[#124](https://github.com/fishfolk/bones/issues/124)**
63+
- update changelogs. ([`3f18051`](https://github.com/fishfolk/bones/commit/3f18051e023a4deb676a5f895f1478beda513f04))
5864
</details>
5965

6066
## 0.1.0 (2023-01-18)

crates/bones_asset/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ repository = "https://github.com/fishfolk/bones"
88
version = "0.2.0"
99

1010
[dependencies]
11-
bones_bevy_utils = { version = "0.2", path = "../bones_bevy_utils", optional = true }
12-
bones_ecs = { version = "0.2", path = "../bones_ecs" }
13-
type_ulid = { version = "0.2", path = "../type_ulid" }
11+
bones_bevy_utils = { version = "^0.2.0", path = "../bones_bevy_utils", optional = true }
12+
bones_ecs = { version = "^0.2.0", path = "../bones_ecs" }
13+
type_ulid = { version = "^0.2.0", path = "../type_ulid" }
1414

1515
bevy_asset = { version = "0.10", optional = true }
1616
serde = "1.0"

crates/bones_bevy_asset/CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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-
## Unreleased
8+
## 0.2.0 (2023-06-01)
99

1010
<csr-id-c57a2089f4dcf6bd63e8f0e0609cf6ff3506084f/>
1111

@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- <csr-id-c57a2089f4dcf6bd63e8f0e0609cf6ff3506084f/> add serde to bones color.
1515
Add serde Serialize / Deserailize to bones color.
1616

17+
### Documentation
18+
19+
- <csr-id-3f18051e023a4deb676a5f895f1478beda513f04/> update changelogs.
20+
1721
### New Features
1822

1923
- <csr-id-3f2e3485f9556cc68eb4c04df34d3aa2c6087330/> upgrade to Bevy 0.10.
@@ -47,10 +51,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4751

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

50-
- 7 commits contributed to the release over the course of 118 calendar days.
54+
- 8 commits contributed to the release over the course of 119 calendar days.
5155
- 133 days passed between releases.
52-
- 7 commits were understood as [conventional](https://www.conventionalcommits.org).
53-
- 7 unique issues were worked on: [#102](https://github.com/fishfolk/bones/issues/102), [#106](https://github.com/fishfolk/bones/issues/106), [#112](https://github.com/fishfolk/bones/issues/112), [#122](https://github.com/fishfolk/bones/issues/122), [#83](https://github.com/fishfolk/bones/issues/83), [#92](https://github.com/fishfolk/bones/issues/92), [#95](https://github.com/fishfolk/bones/issues/95)
56+
- 8 commits were understood as [conventional](https://www.conventionalcommits.org).
57+
- 8 unique issues were worked on: [#102](https://github.com/fishfolk/bones/issues/102), [#106](https://github.com/fishfolk/bones/issues/106), [#112](https://github.com/fishfolk/bones/issues/112), [#122](https://github.com/fishfolk/bones/issues/122), [#124](https://github.com/fishfolk/bones/issues/124), [#83](https://github.com/fishfolk/bones/issues/83), [#92](https://github.com/fishfolk/bones/issues/92), [#95](https://github.com/fishfolk/bones/issues/95)
5458

5559
### Commit Details
5660

@@ -66,6 +70,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6670
- add serde to bones color. ([`c57a208`](https://github.com/fishfolk/bones/commit/c57a2089f4dcf6bd63e8f0e0609cf6ff3506084f))
6771
* **[#122](https://github.com/fishfolk/bones/issues/122)**
6872
- upgrade to Bevy 0.10. ([`3f2e348`](https://github.com/fishfolk/bones/commit/3f2e3485f9556cc68eb4c04df34d3aa2c6087330))
73+
* **[#124](https://github.com/fishfolk/bones/issues/124)**
74+
- update changelogs. ([`3f18051`](https://github.com/fishfolk/bones/commit/3f18051e023a4deb676a5f895f1478beda513f04))
6975
* **[#83](https://github.com/fishfolk/bones/issues/83)**
7076
- implement BonesBevyAssetLoad for `Key`. ([`a699f5d`](https://github.com/fishfolk/bones/commit/a699f5d9254037d6127becae77f09527759fd408))
7177
* **[#92](https://github.com/fishfolk/bones/issues/92)**

crates/bones_bevy_asset/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ version = "0.2.0"
99

1010
[dependencies]
1111
bones_bevy_asset_macros = { version = "0.2", path = "./macros" }
12-
bones_bevy_utils = { version = "0.2", path = "../bones_bevy_utils" }
13-
bones_lib = { version = "0.2", path = "../../", features = ["bevy"] }
14-
type_ulid = { version = "0.2", path = "../type_ulid" }
12+
bones_bevy_utils = { version = "^0.2.0", path = "../bones_bevy_utils" }
13+
bones_lib = { version = "^0.2.0", path = "../../", features = ["bevy"] }
14+
type_ulid = { version = "^0.2.0", path = "../type_ulid" }
1515

1616
bevy_app = "0.10"
1717
bevy_asset = "0.10"

crates/bones_bevy_renderer/CHANGELOG.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,18 @@ 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-
## Unreleased
8+
## 0.2.0 (2023-06-01)
99

1010
<csr-id-6825d579672fa508a4c67aa40efa970909f5ff54/>
1111

1212
### Chore
1313

1414
- <csr-id-6825d579672fa508a4c67aa40efa970909f5ff54/> update bones lib versioning.
1515

16+
### Documentation
17+
18+
- <csr-id-3f18051e023a4deb676a5f895f1478beda513f04/> update changelogs.
19+
1620
### New Features
1721

1822
<csr-id-8751bdb1f2f403761e792bf489216aad02beaa92/>
@@ -24,10 +28,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2428
- <csr-id-ad6d073a33dc342d5aed1155488e4681cf1bc782/> add color to atlas sprite.
2529
- <csr-id-b96133fec89330e3837575c110e587f7e11bf3a6/> add color and sync with bevy
2630
- Add color type to bones
27-
- Add color type to Bones Sprite
28-
- Add color type to clear color
29-
- Add color type to Path2d
30-
- Sync with Bevy
3131

3232
### Bug Fixes
3333

@@ -47,10 +47,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4747

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

50-
- 11 commits contributed to the release over the course of 128 calendar days.
50+
- 12 commits contributed to the release over the course of 128 calendar days.
5151
- 128 days passed between releases.
52-
- 10 commits were understood as [conventional](https://www.conventionalcommits.org).
53-
- 10 unique issues were worked on: [#100](https://github.com/fishfolk/bones/issues/100), [#105](https://github.com/fishfolk/bones/issues/105), [#110](https://github.com/fishfolk/bones/issues/110), [#111](https://github.com/fishfolk/bones/issues/111), [#114](https://github.com/fishfolk/bones/issues/114), [#122](https://github.com/fishfolk/bones/issues/122), [#76](https://github.com/fishfolk/bones/issues/76), [#92](https://github.com/fishfolk/bones/issues/92), [#95](https://github.com/fishfolk/bones/issues/95), [#97](https://github.com/fishfolk/bones/issues/97)
52+
- 11 commits were understood as [conventional](https://www.conventionalcommits.org).
53+
- 11 unique issues were worked on: [#100](https://github.com/fishfolk/bones/issues/100), [#105](https://github.com/fishfolk/bones/issues/105), [#110](https://github.com/fishfolk/bones/issues/110), [#111](https://github.com/fishfolk/bones/issues/111), [#114](https://github.com/fishfolk/bones/issues/114), [#122](https://github.com/fishfolk/bones/issues/122), [#124](https://github.com/fishfolk/bones/issues/124), [#76](https://github.com/fishfolk/bones/issues/76), [#92](https://github.com/fishfolk/bones/issues/92), [#95](https://github.com/fishfolk/bones/issues/95), [#97](https://github.com/fishfolk/bones/issues/97)
5454

5555
### Commit Details
5656

@@ -70,6 +70,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7070
- add color to atlas sprite. ([`ad6d073`](https://github.com/fishfolk/bones/commit/ad6d073a33dc342d5aed1155488e4681cf1bc782))
7171
* **[#122](https://github.com/fishfolk/bones/issues/122)**
7272
- upgrade to Bevy 0.10. ([`3f2e348`](https://github.com/fishfolk/bones/commit/3f2e3485f9556cc68eb4c04df34d3aa2c6087330))
73+
* **[#124](https://github.com/fishfolk/bones/issues/124)**
74+
- update changelogs. ([`3f18051`](https://github.com/fishfolk/bones/commit/3f18051e023a4deb676a5f895f1478beda513f04))
7375
* **[#76](https://github.com/fishfolk/bones/issues/76)**
7476
- add 2D line path rendering. ([`6abe6ee`](https://github.com/fishfolk/bones/commit/6abe6ee3587f737966bddb5ab0f003e62aea3291))
7577
* **[#92](https://github.com/fishfolk/bones/issues/92)**
@@ -83,7 +85,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8385
</details>
8486

8587
<csr-unknown>
86-
add custom camera viewport support. add helper for advancing the Time a fixed timestep.Adds a configurable sync_time option to the BonesRendererPluginso that you can disable the automatic time synchronization in favor of acustom implementation.It also moves the time synchronization to a new stage that happens afterCoreStage::First so that the time will be in sync during thePreUpdate and Update stages. add time resource + sync system add 2D line path rendering.<csr-unknown/>
88+
Add color type to Bones SpriteAdd color type to clear colorAdd color type to Path2dSync with Bevy<csr-unknown/>
8789

8890
## 0.1.1 (2023-01-24)
8991

crates/bones_bevy_renderer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ repository = "https://github.com/fishfolk/bones"
88
version = "0.2.0"
99

1010
[dependencies]
11-
bones_bevy_asset = { version = "0.2", path = "../bones_bevy_asset" }
12-
bones_lib = { version = "0.2", path = "../../", features = ["bevy"] }
13-
type_ulid = { version = "0.2", path = "../type_ulid" }
11+
bones_bevy_asset = { version = "^0.2.0", path = "../bones_bevy_asset" }
12+
bones_lib = { version = "^0.2.0", path = "../../", features = ["bevy"] }
13+
type_ulid = { version = "^0.2.0", path = "../type_ulid" }
1414

1515
glam = { version = "0.23", features = ["serde"] }
1616
serde = { version = "1.0", features = ["derive"] }

crates/bones_bevy_utils/CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ 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-
## Unreleased
8+
## 0.2.0 (2023-06-01)
9+
10+
### Documentation
11+
12+
- <csr-id-3f18051e023a4deb676a5f895f1478beda513f04/> update changelogs.
913

1014
### New Features
1115

@@ -15,10 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1519

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

18-
- 1 commit contributed to the release.
22+
- 2 commits contributed to the release.
1923
- 133 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)
24+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
25+
- 2 unique issues were worked on: [#122](https://github.com/fishfolk/bones/issues/122), [#124](https://github.com/fishfolk/bones/issues/124)
2226

2327
### Commit Details
2428

@@ -28,6 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2832

2933
* **[#122](https://github.com/fishfolk/bones/issues/122)**
3034
- upgrade to Bevy 0.10. ([`3f2e348`](https://github.com/fishfolk/bones/commit/3f2e3485f9556cc68eb4c04df34d3aa2c6087330))
35+
* **[#124](https://github.com/fishfolk/bones/issues/124)**
36+
- update changelogs. ([`3f18051`](https://github.com/fishfolk/bones/commit/3f18051e023a4deb676a5f895f1478beda513f04))
3137
</details>
3238

3339
## 0.1.0 (2023-01-18)

crates/bones_bevy_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ version = "0.2.0"
99

1010
[dependencies]
1111
bevy_ecs = "0.10"
12-
type_ulid = { version = "0.2", path = "../type_ulid" }
12+
type_ulid = { version = "^0.2.0", path = "../type_ulid" }

crates/bones_ecs/CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ 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-
## Unreleased
8+
## 0.2.0 (2023-06-01)
9+
10+
### Documentation
11+
12+
- <csr-id-3f18051e023a4deb676a5f895f1478beda513f04/> update changelogs.
913

1014
### New Features
1115

@@ -39,10 +43,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3943

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

42-
- 9 commits contributed to the release over the course of 126 calendar days.
46+
- 10 commits contributed to the release over the course of 126 calendar days.
4347
- 133 days passed between releases.
44-
- 9 commits were understood as [conventional](https://www.conventionalcommits.org).
45-
- 9 unique issues were worked on: [#115](https://github.com/fishfolk/bones/issues/115), [#122](https://github.com/fishfolk/bones/issues/122), [#78](https://github.com/fishfolk/bones/issues/78), [#79](https://github.com/fishfolk/bones/issues/79), [#88](https://github.com/fishfolk/bones/issues/88), [#90](https://github.com/fishfolk/bones/issues/90), [#92](https://github.com/fishfolk/bones/issues/92), [#93](https://github.com/fishfolk/bones/issues/93), [#94](https://github.com/fishfolk/bones/issues/94)
48+
- 10 commits were understood as [conventional](https://www.conventionalcommits.org).
49+
- 10 unique issues were worked on: [#115](https://github.com/fishfolk/bones/issues/115), [#122](https://github.com/fishfolk/bones/issues/122), [#124](https://github.com/fishfolk/bones/issues/124), [#78](https://github.com/fishfolk/bones/issues/78), [#79](https://github.com/fishfolk/bones/issues/79), [#88](https://github.com/fishfolk/bones/issues/88), [#90](https://github.com/fishfolk/bones/issues/90), [#92](https://github.com/fishfolk/bones/issues/92), [#93](https://github.com/fishfolk/bones/issues/93), [#94](https://github.com/fishfolk/bones/issues/94)
4650

4751
### Commit Details
4852

@@ -54,6 +58,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5458
- change type bound for `Res` from `Default` to `FromWorld`. ([`3a3f05a`](https://github.com/fishfolk/bones/commit/3a3f05ac6b1418784a404f5070e6346122600ee1))
5559
* **[#122](https://github.com/fishfolk/bones/issues/122)**
5660
- upgrade to Bevy 0.10. ([`3f2e348`](https://github.com/fishfolk/bones/commit/3f2e3485f9556cc68eb4c04df34d3aa2c6087330))
61+
* **[#124](https://github.com/fishfolk/bones/issues/124)**
62+
- update changelogs. ([`3f18051`](https://github.com/fishfolk/bones/commit/3f18051e023a4deb676a5f895f1478beda513f04))
5763
* **[#78](https://github.com/fishfolk/bones/issues/78)**
5864
- add `get_many_mut()` method to `CompMut`. ([`147ebc8`](https://github.com/fishfolk/bones/commit/147ebc86744a90196dbbbde1ad0563117b3c0414))
5965
* **[#79](https://github.com/fishfolk/bones/issues/79)**

crates/bones_ecs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fxhash = "0.2"
3333
itertools = "0.10"
3434
serde = { version = "1.0", features = ["derive"], optional = true }
3535
thiserror = "1.0"
36-
type_ulid = { version = "0.2", path = "../type_ulid" }
36+
type_ulid = { version = "^0.2.0", path = "../type_ulid" }
3737

3838
[dev-dependencies]
3939
glam = "0.23"

0 commit comments

Comments
 (0)