From 74f905d09bb2e4ac3da5bc9c85c836bf0c1688d6 Mon Sep 17 00:00:00 2001 From: "Joshua J. Bouw" Date: Tue, 12 Jan 2021 14:14:04 +0700 Subject: [PATCH] v0.3.1 release (#90) * Update CHANGELOG.md * Bump versions --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- LICENSE | 2 +- README.md | 1 + library/types/CHANGELOG.md | 6 ++++++ library/types/Cargo.toml | 2 +- library/types/src/lib.rs | 2 +- src/lib.rs | 4 ++-- 8 files changed, 24 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa2dd17..147a6cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +## [0.3.1] - 2021-01-12 + +### Added + +* Added bevy_log logging [#88](https://github.com/joshuajbouw/bevy_tilemap/pull/88) + +### Fixed + +* Fixed docs.rs fail [#89](https://github.com/joshuajbouw/bevy_tilemap/pull/89) +* Added Types feature back in [#87](https://github.com/joshuajbouw/bevy_tilemap/pull/87) + ## [0.3.0] - 2021-01-11 ### Added diff --git a/Cargo.toml b/Cargo.toml index 2f0c0e2..c4b871b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tilemap" -version = "0.3.0" +version = "0.3.1" authors = ["Joshua J. Bouw "] edition = "2018" description = "Tilemaps with chunks for the Bevy game engine, a simple-driven game engine and app framework" diff --git a/LICENSE b/LICENSE index b923956..be17914 100644 --- a/LICENSE +++ b/LICENSE @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file +SOFTWARE. diff --git a/README.md b/README.md index a310eb8..fd37bf3 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ If you have API suggestions, now is the time to do it. ## Build Features * Serde support +* Extra types ## Design This is not intended to be just another Tilemap. It is meant to be a framework diff --git a/library/types/CHANGELOG.md b/library/types/CHANGELOG.md index bc67305..e56eccc 100644 --- a/library/types/CHANGELOG.md +++ b/library/types/CHANGELOG.md @@ -5,6 +5,12 @@ just additions, fixes as well as if the API had been added to. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +## [0.1.1] - 2021-01-12 + +* Fixed docs.rs fail [#89](https://github.com/joshuajbouw/bevy_tilemap/pull/89) + ## [0.1.0] - 2021-01-11 * Initial release. diff --git a/library/types/Cargo.toml b/library/types/Cargo.toml index 53fdcba..758ea04 100644 --- a/library/types/Cargo.toml +++ b/library/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_tilemap_types" -version = "0.1.0" +version = "0.1.1" authors = ["Joshua J. Bouw "] edition = "2018" description = "Common types used across Bevy Tilemaps" diff --git a/library/types/src/lib.rs b/library/types/src/lib.rs index a78a8d5..7a17ae0 100644 --- a/library/types/src/lib.rs +++ b/library/types/src/lib.rs @@ -3,7 +3,7 @@ //! All the extra or helpful types that are not supported by Bevy or Glam are //! all contained here. -#![doc(html_root_url = "https://docs.rs/bevy_tilemap_types/0.3.0")] +#![doc(html_root_url = "https://docs.rs/bevy_tilemap_types/0.1.1")] // This was broken even further and no longer will work at all with the previous // workaround. There is a fix, might be sometime for it to be included though. // Even then, it is just a warning. For now, including it per module seems to diff --git a/src/lib.rs b/src/lib.rs index c110468..50a3f3d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -48,12 +48,12 @@ //! //! ```toml //! [dependencies] -//! bevy_tilemap = { version = "0.2", features = ["types"] } +//! bevy_tilemap = { version = "0.3", features = ["types"] } //! ``` //! //! See the library `bevy_tilemap_types` for more information. -#![doc(html_root_url = "https://docs.rs/bevy_tilemap/0.3.0")] +#![doc(html_root_url = "https://docs.rs/bevy_tilemap/0.3.1")] // This was broken even further and no longer will work at all with the previous // workaround. There is a fix, might be sometime for it to be included though. // Even then, it is just a warning. For now, including it per module seems to