diff --git a/Cargo.toml b/Cargo.toml index 6f2b246ee..ebe0585fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tcod" description = "The Rust bindings for the Doryen library (a.k.a. libtcod)." -version = "0.9.0" +version = "0.10.0" homepage = "https://github.com/tomassedovic/tcod-rs" repository = "https://github.com/tomassedovic/tcod-rs" documentation = "http://tomassedovic.github.io/tcod-rs/tcod/index.html" @@ -35,7 +35,7 @@ serde = { optional = true, version = "0.6" } [dependencies.tcod-sys] path = "tcod_sys" -version = "4.0" +version = "4.0.1" [dev-dependencies] rand = "0.3" diff --git a/README.md b/README.md index befa3d123..6f47f117e 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ To use `tcod-rs`, add this to your game's `Cargo.toml`: ```toml [dependencies] -tcod = "0.9" +tcod = "0.10" ``` ### Building on Linux diff --git a/tcod_sys/Cargo.toml b/tcod_sys/Cargo.toml index 21a44ed79..dc2182c62 100644 --- a/tcod_sys/Cargo.toml +++ b/tcod_sys/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tcod-sys" description = "Raw FFI bindings & build script to link against libtcod." -version = "4.0.0" +version = "4.0.1" license = "WTFPL" homepage = "https://github.com/tomassedovic/tcod-rs" repository = "https://github.com/tomassedovic/tcod-rs/tree/master/tcod-sys"