From bd1be6fd10622efc2268cb1be61d70bd895b175a Mon Sep 17 00:00:00 2001 From: Lucas Petherbridge Date: Fri, 15 May 2020 16:32:44 -0700 Subject: [PATCH] Updated version --- .gitignore | 1 + Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..03314f7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +Cargo.lock diff --git a/Cargo.toml b/Cargo.toml index 53f4543..b3045a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pix-engine" -version = "0.3.3" +version = "0.3.4" license = "MIT/Apache-2.0" description = "A simple, cross-platform graphics/UI engine framework with a minimal interface." categories = ["graphics", "gui", "multimedia", "rendering"] diff --git a/README.md b/README.md index 5775cc8..dda7179 100644 --- a/README.md +++ b/README.md @@ -14,14 +14,14 @@ A simple, cross-platform graphics/UI engine framework with a minimal interface. Update your `Cargo.toml` file to include pix-engine: ``` -pix-engine = "0.3.3" +pix-engine = "0.3.4" ``` The default driver is sdl2. Future versions will support wasm. To use it: ``` pix-engine = { - version = "0.3.3", + version = "0.3.4", default-features = false, features = ["wasm-driver"], }