From 065b8a93d4e522214e7397c814eaf3106d266651 Mon Sep 17 00:00:00 2001 From: Ryan Goldstein Date: Thu, 16 Apr 2020 18:58:47 -0400 Subject: [PATCH] Bump version to v0.4.0-alpha0.3 --- Cargo.toml | 2 +- README.md | 7 ++----- src/lib.rs | 6 ++++-- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 114f207f..b8bbc8f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] categories = ["game-engines"] homepage = "https://ryanisaacg.github.io/quicksilver" diff --git a/README.md b/README.md index e0228352..7747607e 100644 --- a/README.md +++ b/README.md @@ -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`): @@ -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 diff --git a/src/lib.rs b/src/lib.rs index e44dbf6e..a5171e7f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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`): @@ -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. //! @@ -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;