Skip to content

Commit

Permalink
Don't skip a version.
Browse files Browse the repository at this point in the history
  • Loading branch information
someguynamedjosh committed Jun 15, 2023
1 parent 51e80e9 commit 8552835
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ouroboros_examples"
version = "0.17.0"
version = "0.16.0"
authors = ["Joshua Maros <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions ouroboros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ouroboros"
version = "0.17.0"
version = "0.16.0"
authors = ["Joshua Maros <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion ouroboros_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ouroboros_macro"
version = "0.17.0"
version = "0.16.0"
authors = ["Joshua Maros <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 8552835

Please sign in to comment.