From 1098efa2bbe5c40ff86be767885c216af24c28c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Lescaudey=20de=20Maneville?= Date: Tue, 17 Oct 2023 14:44:29 +0200 Subject: [PATCH] 0.11.0 --- CHANGELOG.md | 5 ++--- Cargo.toml | 2 +- README.md | 10 +++++----- src/lib.rs | 8 ++++---- 4 files changed, 12 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2762d9..555d1cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,9 @@ ## [Unreleased] -* Reduced verteice and tri count of mesh generation (#119) - -## 0.10.1 +## 0.11.0 +* Reduced vertice and tri count of mesh generation (#119) * Use of built-in rust f32 consts instead of custom ones (#113) * Fix clippy warnings of rust 1.72.0 (#114) * Added rustfmt config file (#114) diff --git a/Cargo.toml b/Cargo.toml index 65eecb8..f7dd7f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hexx" -version = "0.10.1" +version = "0.11.0" edition = "2021" authors = ["Felix de Maneville "] description = "Hexagonal utilities" diff --git a/README.md b/README.md index 46f9256..d3069fc 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/) [![Crates.io](https://img.shields.io/crates/v/hexx.svg)](https://crates.io/crates/hexx) [![Docs.rs](https://docs.rs/hexx/badge.svg)](https://docs.rs/hexx) -[![dependency status](https://deps.rs/crate/hexx/0.10.1/status.svg)](https://deps.rs/crate/hexx) +[![dependency status](https://deps.rs/crate/hexx/0.11.0/status.svg)](https://deps.rs/crate/hexx) @@ -33,7 +33,7 @@ Run `cargo add hexx` in your project or add the following line to your `Cargo.toml`: - - `hexx = "0.10"` + - `hexx = "0.11"` ### Cargo features @@ -41,20 +41,20 @@ through the `serde` feature gate. To enable it add the following line to your `Cargo.toml`: - - `hexx = { version = "0.10", features = ["serde"] }` + - `hexx = { version = "0.11", features = ["serde"] }` By default `Hex` uses rust classic memory layout, if you want to use `hexx` through the FFI or have `Hex` be stored without any memory padding, the `packed` feature will make `Hex` `repr(C)`. To enable this behaviour add the following line to your `Cargo.toml`: - - `hexx = { version = "0.10", features = ["packed"] }` + - `hexx = { version = "0.11", features = ["packed"] }` `hexx` supports [Bevy Reflection](https://docs.rs/bevy_reflect/latest/bevy_reflect) through the `bevy_reflect` feature. To enable it add the following line to your `Cargo.toml`: - - `hexx = { version = "0.10", features = ["bevy_reflect"] }` + - `hexx = { version = "0.11", features = ["bevy_reflect"] }` ## Features diff --git a/src/lib.rs b/src/lib.rs index c0b4585..07c79ab 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,7 +20,7 @@ //! Run `cargo add hexx` in your project or add the following line to your //! `Cargo.toml`: //! -//! - `hexx = "0.10"` +//! - `hexx = "0.11"` //! //! ### Cargo features //! @@ -28,20 +28,20 @@ //! through the `serde` feature gate. To enable it add the following line to //! your `Cargo.toml`: //! -//! - `hexx = { version = "0.10", features = ["serde"] }` +//! - `hexx = { version = "0.11", features = ["serde"] }` //! //! By default `Hex` uses rust classic memory layout, if you want to use `hexx` //! through the FFI or have `Hex` be stored without any memory padding, the //! `packed` feature will make `Hex` `repr(C)`. To enable this behaviour add the //! following line to your `Cargo.toml`: //! -//! - `hexx = { version = "0.10", features = ["packed"] }` +//! - `hexx = { version = "0.11", features = ["packed"] }` //! //! `hexx` supports [Bevy Reflection](https://docs.rs/bevy_reflect/latest/bevy_reflect) through the //! `bevy_reflect` feature. To enable it add the following line to your //! `Cargo.toml`: //! -//! - `hexx = { version = "0.10", features = ["bevy_reflect"] }` +//! - `hexx = { version = "0.11", features = ["bevy_reflect"] }` //! //! ## Features //!