diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c086d0..1034c0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ # Changelog ## [Unreleased] + +## [0.2.0] - 2022-05-22 ### Added - Command-line version of the tool (`resymc`) - Syntax highlighting (both in the GUI and in the CLI version of the tool) - Basic type diffing capability +- Line numbering (only for the GUI version of the tool) ## [0.1.0] - 2022-05-04 Initial release diff --git a/Cargo.lock b/Cargo.lock index d3a14b2..caf352a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1480,7 +1480,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" [[package]] name = "resym" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "crossbeam-channel", @@ -1495,7 +1495,7 @@ dependencies = [ [[package]] name = "resym_core" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "crossbeam-channel", @@ -1511,7 +1511,7 @@ dependencies = [ [[package]] name = "resymc" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "crossbeam-channel", diff --git a/README.md b/README.md index db5a669..dcd34f1 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,8 @@ $ ./target/release/resym If you want to use the GUI version, simply run the `resym` executable. A CLI version (named `resymc`) is also available: ``` -resymc 0.1.0 -resym is a utility that allows browsing and extracting types from PDB files. +resymc 0.2.0 +resymc is a utility that allows browsing and extracting types from PDB files. USAGE: resymc.exe diff --git a/resym/Cargo.toml b/resym/Cargo.toml index e0ec685..a1d95d3 100644 --- a/resym/Cargo.toml +++ b/resym/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "resym" -version = "0.1.0" +version = "0.2.0" edition = "2021" [dependencies] -resym_core = { version = "0.1", path = "../resym_core" } +resym_core = { version = "0.2", path = "../resym_core" } eframe = { version = "0.18", features = ["persistence"] } tinyfiledialogs = "3.0" diff --git a/resym_core/Cargo.toml b/resym_core/Cargo.toml index 2560cff..8f029d7 100644 --- a/resym_core/Cargo.toml +++ b/resym_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "resym_core" -version = "0.1.0" +version = "0.2.0" edition = "2021" exclude = [ "tests/data/*", diff --git a/resymc/Cargo.toml b/resymc/Cargo.toml index e1e3d3e..bc7c162 100644 --- a/resymc/Cargo.toml +++ b/resymc/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "resymc" -version = "0.1.0" +version = "0.2.0" edition = "2021" [dependencies] -resym_core = { version = "0.1", path = "../resym_core" } +resym_core = { version = "0.2", path = "../resym_core" } structopt = { version = "0.3", default-features = false } syntect = "5.0" diff --git a/resymc/src/main.rs b/resymc/src/main.rs index 02b7744..b25f67f 100644 --- a/resymc/src/main.rs +++ b/resymc/src/main.rs @@ -81,7 +81,7 @@ fn main() -> Result<()> { #[derive(Debug, StructOpt)] #[structopt( name = PKG_NAME, - about = "resym is a utility that allows browsing and extracting types from PDB files." + about = "resymc is a utility that allows browsing and extracting types from PDB files." )] enum ResymOptions { /// List types from a given PDB file