Skip to content

Commit

Permalink
Bump version to v0.4.0-alpha0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanisaacg committed Apr 16, 2020
1 parent 146b18b commit 065b8a9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
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.2"
version = "0.4.0-alpha0.3"
authors = ["Ryan Goldstein <[email protected]>"]
categories = ["game-engines"]
homepage = "https://ryanisaacg.github.io/quicksilver"
Expand Down
7 changes: 2 additions & 5 deletions 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.2"
quicksilver = "0.4.0-alpha0.3"
```
Then replace `src/main.rs` with the following (the contents of quicksilver's
`examples/01_square.rs`):
Expand Down Expand Up @@ -65,12 +65,9 @@ async fn app(window: Window, mut gfx: Graphics, mut events: EventStream) -> Resu
A good way to get started with Quicksilver is to
[read and run the examples](https://github.com/ryanisaacg/quicksilver/tree/master/examples)
which also serve as tutorials. If you have any questions, feel free to open an issue or ask for
help in the [#gamdev channel in the Rust Community Discord](https://discord.gg/aVESxV8) from other
help in the [Rust Community Discord](https://discord.gg/aVESxV8) from other
Quicksilver users and developers.

Run this with `cargo run` or, if you have the wasm32 toolchain installed, you can build for the
web (instructions below).

## Made with Quicksilver

- Documentation / Tutorials
Expand Down
6 changes: 4 additions & 2 deletions 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-alpha2"
//! quicksilver = "0.4.0-alpha3"
//! ```
//! Then replace `src/main.rs` with the following (the contents of quicksilver's
//! `examples/01_square.rs`):
Expand Down Expand Up @@ -68,7 +68,7 @@
//!
//! A good way to get started with Quicksilver is to
//! [read and run the examples](https://github.com/ryanisaacg/quicksilver/tree/master/examples)
//! which also serve as tutorials. IF you have any questions, feel free to open an issue or ask for
//! which also serve as tutorials. If you have any questions, feel free to open an issue or ask for
//! help in the [Rust Community Discord](https://discord.gg/aVESxV8) from other Quicksilver users
//! and developers.
//!
Expand Down Expand Up @@ -145,6 +145,8 @@
// Re-export every library that appears in the public API
pub use blinds;
pub use golem;
#[cfg(feature = "font")]
pub use elefont;
pub use log;
pub use mint;

Expand Down

0 comments on commit 065b8a9

Please sign in to comment.