Skip to content

Commit

Permalink
Bump version to 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanisaacg committed Oct 26, 2018
1 parent 8a0fb4a commit c3b7711
Show file tree
Hide file tree
Showing 21 changed files with 2,189 additions and 2,106 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## In-development

## 0.3.2

- Add `Image::from_bytes` to load an Image from an encoded byte array
- Fix Transform's impl of PartialEq always returning the wrong result

Expand Down
4 changes: 2 additions & 2 deletions 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.3.1"
version = "0.3.2"
authors = ["Ryan Goldstein <[email protected]>"]
categories = ["game-engines"]
homepage = "https://ryanisaacg.github.io/quicksilver"
Expand Down Expand Up @@ -51,7 +51,7 @@ gilrs = { version = "0.6", optional = true }
rodio = { version = "0.8", optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
stdweb = "0.4.9"
stdweb = "0.4.10"
webgl_stdweb = "0.2"

[[example]]
Expand Down
459 changes: 234 additions & 225 deletions docs/camera.example.js

Large diffs are not rendered by default.

Binary file modified docs/camera.wasm
Binary file not shown.
463 changes: 236 additions & 227 deletions docs/draw-geometry.example.js

Large diffs are not rendered by default.

Binary file modified docs/draw-geometry.wasm
Binary file not shown.
507 changes: 258 additions & 249 deletions docs/font.example.js

Large diffs are not rendered by default.

Binary file modified docs/font.wasm
Binary file not shown.
499 changes: 254 additions & 245 deletions docs/image.example.js

Large diffs are not rendered by default.

Binary file modified docs/image.wasm
Binary file not shown.
469 changes: 239 additions & 230 deletions docs/lyon.example.js

Large diffs are not rendered by default.

Binary file modified docs/lyon.wasm
Binary file not shown.
467 changes: 238 additions & 229 deletions docs/raycast.example.js

Large diffs are not rendered by default.

Binary file modified docs/raycast.wasm
Binary file not shown.
463 changes: 236 additions & 227 deletions docs/rgb-triangle.example.js

Large diffs are not rendered by default.

Binary file modified docs/rgb-triangle.wasm
Binary file not shown.
483 changes: 246 additions & 237 deletions docs/sound.example.js

Large diffs are not rendered by default.

Binary file modified docs/sound.wasm
Binary file not shown.
477 changes: 243 additions & 234 deletions docs/stopwatch.example.js

Large diffs are not rendered by default.

Binary file modified docs/stopwatch.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
//!
//! Each are enabled by default, but you can [specify which features](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#choosing-features) you actually want to use.
#![doc(html_root_url = "https://docs.rs/quicksilver/0.3.1/quicksilver")]
#![doc(html_root_url = "https://docs.rs/quicksilver/0.3.2/quicksilver")]
#![deny(
bare_trait_objects,
missing_docs,
Expand Down

0 comments on commit c3b7711

Please sign in to comment.