From 06025b8e760d8ca2c0babcdb75953dffa39cedcf Mon Sep 17 00:00:00 2001 From: Tony Aldridge Date: Mon, 18 May 2015 12:46:47 +0100 Subject: [PATCH] Updated version numbers --- Cargo.toml | 10 +++++----- README.md | 2 +- sdl2-sys/Cargo.toml | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a9467f5a..4c93d5b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "sdl2" description = "SDL2 bindings for Rust" repository = "https://github.com/AngryLawyer/rust-sdl2" -version = "0.2.3" +version = "0.3.0" license = "MIT" authors = [ "Tony Aldridge " ] keywords = ["SDL", "windowing", "graphics"] @@ -14,15 +14,15 @@ name = "sdl2" path = "src/sdl2/lib.rs" [dependencies] -num = "0.1.23" +num = "0.1" bitflags = "0.1" -libc = "0.1.6" -rand = "0.3.7" +libc = "0.1" +rand = "0.3" [dependencies.sdl2-sys] path = "sdl2-sys" -version = "0.2.1" +version = "0.3.0" [features] diff --git a/README.md b/README.md index 9fc1d8a6..fde43d9d 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ download through Crates.io: ```toml [dependencies] - sdl2 = "0.2.3" + sdl2 = "0.3.0" ``` Alternatively, pull it from GitHub diff --git a/sdl2-sys/Cargo.toml b/sdl2-sys/Cargo.toml index 1c8eecd3..c5ece7c6 100644 --- a/sdl2-sys/Cargo.toml +++ b/sdl2-sys/Cargo.toml @@ -3,7 +3,7 @@ name = "sdl2-sys" description = "Raw SDL2 bindings for Rust, used internally rust-sdl2" repository = "https://github.com/AngryLawyer/rust-sdl2" -version = "0.2.2" +version = "0.3.0" authors = ["Tony Aldridge "] license = "MIT" links = "SDL2" @@ -14,11 +14,11 @@ name = "sdl2_sys" path = "src/lib.rs" [dependencies] -num = "0.1.23" -libc = "0.1.6" +num = "0.1" +libc = "0.1" [build-dependencies.pkg-config] -version = "0.3.3" +version = "0.3" optional = true [features]