Skip to content

Commit 2d2daa5

Browse files
Release 0.6.1
1 parent 06a1fe4 commit 2d2daa5

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ From 0.4.0 onwards, all breaking changes will be explicitly labelled, to make it
66

77
This project adheres to Semantic Versioning.
88

9-
## [Upcoming]
9+
## [0.6.1] - 2021-03-15
1010

1111
### Added
1212

@@ -19,6 +19,11 @@ This project adheres to Semantic Versioning.
1919
* More events have been added for window state changes, such as minimizing and maximizing. ([@sumibi-yakitori](https://github.com/sumibi-yakitori) in [#248](https://github.com/17cupsofcoffee/tetra/pull/248)
2020
* `window::set_visible` and `window::is_visible` can be used to get and set whether or not the window is currently hidden to the user.
2121

22+
### Changed
23+
24+
* Updated `hashbrown` to 0.11.
25+
* Updated `glow` to 0.8.
26+
2227
### Fixed
2328

2429
* `Text::get_bounds` no longer returns incorrect results when a tall glyph is added after a short glyph. ([@tesselode](https://github.com/tesselode) in [#241](https://github.com/17cupsofcoffee/tetra/pull/241))
@@ -732,7 +737,8 @@ for. This can be useful when implementing more complex animation behaviors. ([@V
732737

733738
* Initial release!
734739

735-
[Upcoming]: https://github.com/17cupsofcoffee/tetra/compare/0.6.0..HEAD
740+
[Upcoming]: https://github.com/17cupsofcoffee/tetra/compare/0.6.1..HEAD
741+
[0.6.1]: https://github.com/17cupsofcoffee/tetra/compare/0.6.0..0.6.1
736742
[0.6.0]: https://github.com/17cupsofcoffee/tetra/compare/0.5.8..0.6.0
737743
[0.5.8]: https://github.com/17cupsofcoffee/tetra/compare/0.5.7..0.5.8
738744
[0.5.7]: https://github.com/17cupsofcoffee/tetra/compare/0.5.6..0.5.7

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tetra"
33
description = "A simple 2D game framework written in Rust"
4-
version = "0.6.0"
4+
version = "0.6.1"
55
edition = "2018"
66
authors = ["Joe Clay <[email protected]>"]
77
license = "MIT"
@@ -14,10 +14,10 @@ categories = ["game-engines"]
1414
[dependencies]
1515
sdl2 = "0.34.0"
1616
rodio = { version = "0.11.0", optional = true, default-features = false }
17-
glow = "0.7.1"
17+
glow = "0.8.1"
1818
image = { version = "0.23.12", default-features = false }
1919
vek = { version = "0.13.1", default-features = false }
20-
hashbrown = "0.9.0"
20+
hashbrown = "0.11.0"
2121
serde = { version = "1.0.104", optional = true }
2222
ab_glyph = { version = "0.2.2", optional = true }
2323
xi-unicode = "0.3.0"

0 commit comments

Comments
 (0)