Skip to content

Commit

Permalink
Bump version to v0.4.0-alpha0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanisaacg committed Jun 4, 2020
1 parent 95d7d4e commit cde0a3d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## WIP
## v0.4.0-alpha0.5
- Fix `Timer::remaining` returning the time until next tick, instead of returning how late the tick is.
- Add methods to `Timer`: `late_by`, `period`, and `elapsed`
- [BREAKING] Remove `Scalar` and replace it with `f32`
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "quicksilver"
description = "A simple game framework for 2D games in pure Rust"
version = "0.4.0-alpha0.4"
version = "0.4.0-alpha0.5"
authors = ["Ryan Goldstein <ryanisaacg@gmail.com>"]
categories = ["game-engines"]
homepage = "https://ryanisaacg.github.io/quicksilver"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ give feedback on API decisions, please open an issue.

Create a rust project and add this line to your `Cargo.toml` file under `[dependencies]`:
```text
quicksilver = "0.4.0-alpha0.3"
quicksilver = "0.4.0-alpha0.5"
```
Then replace `src/main.rs` with the following (the contents of quicksilver's
`examples/01_square.rs`):
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//!
//! Create a rust project and add this line to your `Cargo.toml` file under `[dependencies]`:
//! ```text
//! quicksilver = "0.4.0-alpha3"
//! quicksilver = "0.4.0-alpha5"
//! ```
//! Then replace `src/main.rs` with the following (the contents of quicksilver's
//! `examples/01_square.rs`):
Expand Down

0 comments on commit cde0a3d

Please sign in to comment.