summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Michelotti <michelotti.matthew@gmail.com>2018-05-05 23:21:05 -0500
committerMatthew Michelotti <michelotti.matthew@gmail.com>2018-05-05 23:21:05 -0500
commit95f5ec60e76859fd83d33d7efcdc2b5bfd915a0e (patch)
treea56327f4e06d4d66827de94f52a66b45aec2c5c8
parent774ccc13e42553dc50b3f29f6e6df6efa901a577 (diff)
preparing for release
-rw-r--r--gate/Cargo.toml2
-rw-r--r--gate/src/renderer/renderer.rs2
-rw-r--r--gate_build/Cargo.toml2
3 files changed, 3 insertions, 3 deletions
diff --git a/gate/Cargo.toml b/gate/Cargo.toml
index 9a99e65..325485b 100644
--- a/gate/Cargo.toml
+++ b/gate/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gate"
-version = "0.3.0"
+version = "0.4.0"
authors = ["Matthew Michelotti <matthew@matthewmichelotti.com>"]
description = "A specialized 2D game library"
documentation = "https://docs.rs/gate/"
diff --git a/gate/src/renderer/renderer.rs b/gate/src/renderer/renderer.rs
index 6c15ffc..d1e79a0 100644
--- a/gate/src/renderer/renderer.rs
+++ b/gate/src/renderer/renderer.rs
@@ -28,7 +28,7 @@ use super::core_renderer::CoreRenderer;
/// Contains methods for rendering visuals to screen.
///
/// The renderer origin is the center of the screen, with +X meaning "right" and +Y meaning "up".
-/// The dimensions of the screen in renderer units ("app pixels") is `AppContext.dims()`.
+/// The dimensions of the screen in renderer units ("app pixels") are `AppContext.dims()`.
/// The default scaling of each image is such that one source image pixel equals one "app pixel".
///
/// This struct has functions for entering different rendering "modes".
diff --git a/gate_build/Cargo.toml b/gate_build/Cargo.toml
index 6d1c0a5..a11f176 100644
--- a/gate_build/Cargo.toml
+++ b/gate_build/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gate_build"
-version = "0.3.0"
+version = "0.4.0"
authors = ["Matthew Michelotti <matthew@matthewmichelotti.com>"]
description = "Build utilities for Gate, a specialized 2D game library"
documentation = "https://docs.rs/gate_build/"