From 86d35b15a036bb1146ea60dd504472ffe77667a2 Mon Sep 17 00:00:00 2001 From: Schneems Date: Wed, 18 Dec 2024 11:02:29 -0600 Subject: [PATCH] v1.0.0 In this case 1.0 does not mean "stable, will never change" it means "something changed, so we rev-d major." We will try to keep changes to a minimal disruption, but will rev major on changes. --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a21ad44..a1729d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## Unreleased +## 1.0.0 - 2024/12/18 + - Change: `TryMigrate::Error` must now be `Display` + `Debug` () ## 0.2.1 - 2024/12/12 diff --git a/Cargo.lock b/Cargo.lock index 061c9f0..b217ed7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -133,7 +133,7 @@ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "magic_migrate" -version = "0.2.1" +version = "1.0.0" dependencies = [ "chrono", "serde", diff --git a/Cargo.toml b/Cargo.toml index 9b6aa05..a27cf67 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "magic_migrate" -version = "0.2.1" +version = "1.0.0" edition = "2021" license = "MIT" description = "Automagically load and migrate deserialized structs to the latest version"