Skip to content

Commit

Permalink
v0.12.0
Browse files Browse the repository at this point in the history
nickelc committed Jan 18, 2025
1 parent e6fa40a commit 4c9be75
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### v0.12.0 (2025-01-18)

* Implement `TryFrom<i64>` for `Id<T>` type.
* Introduce `Timestamp` newtype the Unix timestamp fields.

### v0.11.0 (2024-06-04)

* Remove `ALL` constants from bitflags, use the `all()` method instead.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "modio"
version = "0.11.0" # don't forget to update html_root_url
version = "0.12.0" # don't forget to update html_root_url
description = "Rust interface for integrating https://mod.io - a modding API for game developers"
repository = "https://github.com/nickelc/modio-rs"
license = "MIT OR Apache-2.0"
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -122,7 +122,7 @@
//! # Ok(())
//! # }
//! ```
#![doc(html_root_url = "https://docs.rs/modio/0.11.0")]
#![doc(html_root_url = "https://docs.rs/modio/0.12.0")]
#![deny(rust_2018_idioms)]
#![deny(rustdoc::broken_intra_doc_links)]
#![allow(clippy::upper_case_acronyms)]

0 comments on commit 4c9be75

Please sign in to comment.