From 855283511a29137b84e93bcedac1e4b454e3b204 Mon Sep 17 00:00:00 2001 From: joshua-maros <60271685+joshua-maros@users.noreply.github.com> Date: Wed, 14 Jun 2023 19:01:06 -0500 Subject: [PATCH] Don't skip a version. --- README.md | 4 ++-- examples/Cargo.toml | 4 ++-- ouroboros/Cargo.toml | 4 ++-- ouroboros_macro/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index df355b9..c292bab 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,9 @@ Dual licensed under MIT / Apache 2.0. While this crate is `no_std` compatible, it still requires the `alloc` crate. Version notes: -- Version `0.17.0` fixes a potential soundness issue, but removes support for +- Version `0.16.0` fixes a potential soundness issue, but removes support for template parameters in the process. Lifetime parameters are still supported. - As of 2023-06-13, the compiler is practically sound with 0.16 but this may + As of 2023-06-13, the compiler is practically sound with 0.15 but this may stop being the case at any time and without warning. - Version `0.13.0` and later contain checks for additional situations which cause undefined behavior if not caught. diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 09d5c78..0a7b1cf 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ouroboros_examples" -version = "0.17.0" +version = "0.16.0" authors = ["Joshua Maros "] edition = "2018" license = "MIT OR Apache-2.0" @@ -20,7 +20,7 @@ miri = [] std = [] [dependencies] -ouroboros = { version = "0.17.0", path = "../ouroboros" } +ouroboros = { version = "0.16.0", path = "../ouroboros" } tokio = { version = "1.27.0", features = [ "macros", "rt" ], optional = true } [dev-dependencies] diff --git a/ouroboros/Cargo.toml b/ouroboros/Cargo.toml index 83845c5..3c256b4 100644 --- a/ouroboros/Cargo.toml +++ b/ouroboros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ouroboros" -version = "0.17.0" +version = "0.16.0" authors = ["Joshua Maros "] edition = "2018" license = "MIT OR Apache-2.0" @@ -11,7 +11,7 @@ repository = "https://github.com/joshua-maros/ouroboros" [dependencies] aliasable = "0.1.3" -ouroboros_macro = { version = "0.17.0", path = "../ouroboros_macro" } +ouroboros_macro = { version = "0.16.0", path = "../ouroboros_macro" } static_assertions = "1.1.0" [features] diff --git a/ouroboros_macro/Cargo.toml b/ouroboros_macro/Cargo.toml index c620f7a..1f430d8 100644 --- a/ouroboros_macro/Cargo.toml +++ b/ouroboros_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ouroboros_macro" -version = "0.17.0" +version = "0.16.0" authors = ["Joshua Maros "] edition = "2018" license = "MIT OR Apache-2.0"