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)"]