Skip to content

Commit 456ae45

Browse files
jnisesfornwall
andauthored
Update glam dependency range to include 0.25 (#123)
### Description of Changes - Update the glam dependency to allow a range of releases from 0.22 to 0.25 - Add `Cargo.lock` into version control ([context](https://blog.rust-lang.org/2023/08/29/committing-lockfiles.html), and helps with cargo deny specifically now that we allow version ranges). - Mark `0.1.19` as released, as the proposal is to release it later today once this PR is merged. --------- Co-authored-by: Fredrik Fornwall <[email protected]>
1 parent 8275148 commit 456ae45

File tree

4 files changed

+232
-3
lines changed

4 files changed

+232
-3
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
/target
22
**/*.rs.bk
3-
/Cargo.lock

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- None
1111

12+
# 0.1.19 (26. February, 2023)
13+
14+
- Allow a `glam` version range between `0.22` and `0.25`, inclusive.
15+
1216
# 0.1.18 (22. February, 2023)
1317

1418
- Update internal dependencies

Cargo.lock

+226
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/mirror-mirror/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mirror-mirror"
3-
version = "0.1.18"
3+
version = "0.1.19"
44
edition = "2021"
55
authors = ["Embark <[email protected]>", "David Pedersen <[email protected]>"]
66
repository = "https://github.com/EmbarkStudios/mirror-mirror"
@@ -27,7 +27,7 @@ ordered-float = { version = "4", default-features = false }
2727
serde = { version = "1.0.158", default-features = false, features = ["derive", "alloc"], optional = true }
2828
speedy = { version = "0.8.5", optional = true }
2929
syn = { version = "2.0", features = ["full", "parsing"], optional = true }
30-
glam = { version = "0.22", optional = true }
30+
glam = { version = ">= 0.22, <= 0.25", optional = true }
3131
macaw = { version = "0.19", optional = true }
3232

3333
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)