From 104e00931d3aa832bb5e435336ad1ce28f6b10f5 Mon Sep 17 00:00:00 2001 From: Paho Lurie-Gregg Date: Fri, 12 Mar 2021 15:54:50 -0800 Subject: [PATCH] Update version to 1.13 --- CHANGELOG.md | 2 ++ Cargo.toml | 7 +++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a65a42817..add7a646d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The MSRV (Minimum Supported Rust Version) is 1.37.0, and typenum is tested against this Rust version. ### Unreleased + +### 1.13.0 (2021-03-12) - [changed] MSRV from 1.22.0 to 1.37.0. - [fixed] `op` macro with 2018 edition import. - [changed] Allowed calling `assert_type_eq` and `assert_type` at top level. diff --git a/Cargo.toml b/Cargo.toml index bb886e5ec..8bc0dbb32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "typenum" build = "build/main.rs" - version = "1.12.0" + version = "1.13.0" authors = [ "Paho Lurie-Gregg ", "Andre Bogus " @@ -10,7 +10,10 @@ repository = "https://github.com/paholg/typenum" readme = "README.md" license = "MIT OR Apache-2.0" - description = "Typenum is a Rust library for type-level numbers evaluated at compile time. It currently supports bits, unsigned integers, and signed integers. It also provides a type-level array of type-level numbers, but its implementation is incomplete." + description = """Typenum is a Rust library for type-level numbers evaluated at + compile time. It currently supports bits, unsigned integers, and signed + integers. It also provides a type-level array of type-level numbers, but its + implementation is incomplete.""" categories = ["no-std"] edition = "2018"