Skip to content

Commit

Permalink
Release 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
17cupsofcoffee committed Mar 15, 2021
1 parent 06a1fe4 commit 2d2daa5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ From 0.4.0 onwards, all breaking changes will be explicitly labelled, to make it

This project adheres to Semantic Versioning.

## [Upcoming]
## [0.6.1] - 2021-03-15

### Added

Expand All @@ -19,6 +19,11 @@ This project adheres to Semantic Versioning.
* 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)
* `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.

### Changed

* Updated `hashbrown` to 0.11.
* Updated `glow` to 0.8.

### Fixed

* `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))
Expand Down Expand Up @@ -732,7 +737,8 @@ for. This can be useful when implementing more complex animation behaviors. ([@V

* Initial release!

[Upcoming]: https://github.com/17cupsofcoffee/tetra/compare/0.6.0..HEAD
[Upcoming]: https://github.com/17cupsofcoffee/tetra/compare/0.6.1..HEAD
[0.6.1]: https://github.com/17cupsofcoffee/tetra/compare/0.6.0..0.6.1
[0.6.0]: https://github.com/17cupsofcoffee/tetra/compare/0.5.8..0.6.0
[0.5.8]: https://github.com/17cupsofcoffee/tetra/compare/0.5.7..0.5.8
[0.5.7]: https://github.com/17cupsofcoffee/tetra/compare/0.5.6..0.5.7
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tetra"
description = "A simple 2D game framework written in Rust"
version = "0.6.0"
version = "0.6.1"
edition = "2018"
authors = ["Joe Clay <[email protected]>"]
license = "MIT"
Expand All @@ -14,10 +14,10 @@ categories = ["game-engines"]
[dependencies]
sdl2 = "0.34.0"
rodio = { version = "0.11.0", optional = true, default-features = false }
glow = "0.7.1"
glow = "0.8.1"
image = { version = "0.23.12", default-features = false }
vek = { version = "0.13.1", default-features = false }
hashbrown = "0.9.0"
hashbrown = "0.11.0"
serde = { version = "1.0.104", optional = true }
ab_glyph = { version = "0.2.2", optional = true }
xi-unicode = "0.3.0"
Expand Down

0 comments on commit 2d2daa5

Please sign in to comment.