From 5271d046a47251e21c3308415efc21554c2aee66 Mon Sep 17 00:00:00 2001 From: maddymakesgames Date: Wed, 27 Mar 2024 14:12:02 -0400 Subject: [PATCH] celeste_rs v0.2 --- Cargo.lock | 4 ++-- gui/Cargo.toml | 2 +- lib/CHANGELOG.md | 3 +++ lib/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 lib/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index a19e49a..a7ca89a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -730,7 +730,7 @@ dependencies = [ [[package]] name = "celeste_rs" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "chrono", @@ -741,7 +741,7 @@ dependencies = [ [[package]] name = "celeste_rs_gui" -version = "0.1.0" +version = "0.2.0" dependencies = [ "celeste_rs", "console_error_panic_hook", diff --git a/gui/Cargo.toml b/gui/Cargo.toml index e9fcadf..0ce800d 100644 --- a/gui/Cargo.toml +++ b/gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celeste_rs_gui" -version = "0.1.0" +version = "0.2.0" edition = "2021" repository = "https://github.com/maddymakesgames/celeste_rs" authors = ["Maddymakesgames (madelinemakesgames@gmail.com)"] diff --git a/lib/CHANGELOG.md b/lib/CHANGELOG.md new file mode 100644 index 0000000..edf8cc5 --- /dev/null +++ b/lib/CHANGELOG.md @@ -0,0 +1,3 @@ +# 0.2 - 2024-03-27 +- Fixed issue where saves would fail to load due to exported saves not importing the right xml extensions. +- Added xml version headers to output files diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 53f7e60..027574e 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "celeste_rs" -version = "0.1.0" +version = "0.2.0" edition = "2021" repository = "https://github.com/maddymakesgames/celeste_rs" authors = ["Maddymakesgames (madelinemakesgames@gmail.com)"]