From 9d718201848330ab46640de6fbe5dc1357075189 Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Wed, 25 Sep 2024 22:22:22 -0700 Subject: [PATCH] v0.13.1 Release notes: - [kpuzzle] Change `.packed_orbit_data()` (method on `KPattern` and `KTransformation`) to return a mutable reference. --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- cubing/Cargo.toml | 4 ++-- cubing_macros/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3fc65a3..4957b83 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -110,7 +110,7 @@ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" [[package]] name = "cubing" -version = "0.13.0" +version = "0.13.1" dependencies = [ "clap", "cubing_core", @@ -122,7 +122,7 @@ dependencies = [ [[package]] name = "cubing_core" -version = "0.13.0" +version = "0.13.1" dependencies = [ "clap", "derive_more", @@ -138,7 +138,7 @@ dependencies = [ [[package]] name = "cubing_macros" -version = "0.13.0" +version = "0.13.1" dependencies = [ "cubing_core", "quote", diff --git a/Cargo.toml b/Cargo.toml index f285a12..87599bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ default-members = [ ] [workspace.package] -version = "0.13.0" +version = "0.13.1" license = "MPL-2.0" edition = "2021" diff --git a/cubing/Cargo.toml b/cubing/Cargo.toml index 8c6f2ee..8e177f8 100644 --- a/cubing/Cargo.toml +++ b/cubing/Cargo.toml @@ -12,8 +12,8 @@ keywords = ["cubing", "puzzle", "rubik", "solving", "WCA"] readme = "../README.md" [dependencies] -cubing_core = { version = "=0.13.0", path = "../cubing_core" } -cubing_macros = { version = "=0.13.0", path = "../cubing_macros" } +cubing_core = { version = "=0.13.1", path = "../cubing_core" } +cubing_macros = { version = "=0.13.1", path = "../cubing_macros" } [dev-dependencies] clap = { version = "4.1.8", features = ["derive"] } diff --git a/cubing_macros/Cargo.toml b/cubing_macros/Cargo.toml index 431841b..afc1248 100644 --- a/cubing_macros/Cargo.toml +++ b/cubing_macros/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["cubing", "puzzle", "rubik", "solving", "WCA"] readme = "README.md" [dependencies] -cubing_core = { version = "=0.13.0", path = "../cubing_core" } +cubing_core = { version = "=0.13.1", path = "../cubing_core" } quote = "1.0.33" syn = "2.0.39"