Skip to content

Commit

Permalink
0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ManevilleF committed Oct 17, 2023
1 parent 209549b commit 1098efa
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
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 = "hexx"
version = "0.10.1"
version = "0.11.0"
edition = "2021"
authors = ["Felix de Maneville <[email protected]>"]
description = "Hexagonal utilities"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

<!-- cargo-sync-readme start -->

Expand All @@ -33,28 +33,28 @@
Run `cargo add hexx` in your project or add the following line to your
`Cargo.toml`:

- `hexx = "0.10"`
- `hexx = "0.11"`

### Cargo features

`hexx` supports serialization and deserialization of most types using [serde](https://github.com/serde-rs/serde),
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

Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,28 @@
//! Run `cargo add hexx` in your project or add the following line to your
//! `Cargo.toml`:
//!
//! - `hexx = "0.10"`
//! - `hexx = "0.11"`
//!
//! ### Cargo features
//!
//! `hexx` supports serialization and deserialization of most types using [serde](https://github.com/serde-rs/serde),
//! 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
//!
Expand Down

0 comments on commit 1098efa

Please sign in to comment.