diff --git a/CHANGELOG.md b/CHANGELOG.md index 5217d53..5564bfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,5 +4,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 0.2.0 +* Add a cpx file writer. +* Import genie-drs, for reading .DRS files. +* Add read/write support for .ini and HD Edition key-value language files, and read support for .dll language files. + ## 0.1.0 * Initial release. diff --git a/Cargo.toml b/Cargo.toml index 51ccf05..94173bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "genie" -version = "0.1.0" +version = "0.2.0" authors = ["Renée Kooi "] edition = "2018" license = "GPL-3.0" @@ -11,8 +11,8 @@ readme = "README.md" [dependencies] chariot_palette = "^0.1.5" -genie-cpx = { version = "0.1.0", path = "crates/genie-cpx" } -genie-drs = { version = "0.1.0", path = "crates/genie-drs" } +genie-cpx = { version = "0.2.0", path = "crates/genie-cpx" } +genie-drs = { version = "0.1.1", path = "crates/genie-drs" } genie-hki = { version = "0.1.0", path = "crates/genie-hki" } genie-lang = { version = "0.1.0", path = "crates/genie-lang" } genie-scx = { version = "1.0.0", path = "crates/genie-scx" } diff --git a/crates/genie-cpx/Cargo.toml b/crates/genie-cpx/Cargo.toml index 013d71e..bbed386 100644 --- a/crates/genie-cpx/Cargo.toml +++ b/crates/genie-cpx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "genie-cpx" -version = "0.1.0" +version = "0.2.0" authors = ["Renée Kooi "] edition = "2018" license = "GPL-3.0" diff --git a/crates/genie-drs/Cargo.toml b/crates/genie-drs/Cargo.toml index 6c2add2..b97fcd9 100644 --- a/crates/genie-drs/Cargo.toml +++ b/crates/genie-drs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "genie-drs" -version = "0.1.0" +version = "0.1.1" authors = ["Renée Kooi "] edition = "2018" license = "GPL-3.0"