Skip to content
This repository has been archived by the owner on May 7, 2022. It is now read-only.

Commit

Permalink
v0.3.1 release (#90)
Browse files Browse the repository at this point in the history
* Update CHANGELOG.md

* Bump versions
  • Loading branch information
joshuajbouw authored Jan 12, 2021
1 parent 5b751bc commit 74f905d
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_tilemap"
version = "0.3.0"
version = "0.3.1"
authors = ["Joshua J. Bouw <dev@joshuajbouw.com>"]
edition = "2018"
description = "Tilemaps with chunks for the Bevy game engine, a simple-driven game engine and app framework"
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -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.
SOFTWARE.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions library/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion library/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_tilemap_types"
version = "0.1.0"
version = "0.1.1"
authors = ["Joshua J. Bouw <dev@joshuajbouw.com>"]
edition = "2018"
description = "Common types used across Bevy Tilemaps"
Expand Down
2 changes: 1 addition & 1 deletion library/types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 74f905d

Please sign in to comment.