Skip to content

Commit

Permalink
Bump resym* to version 0.2.0, update CHANGELOG and README
Browse files Browse the repository at this point in the history
  • Loading branch information
ergrelet committed May 22, 2022
1 parent bb9238e commit 4c2d341
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <SUBCOMMAND>
Expand Down
4 changes: 2 additions & 2 deletions resym/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion resym_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resym_core"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
exclude = [
"tests/data/*",
Expand Down
4 changes: 2 additions & 2 deletions resymc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion resymc/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4c2d341

Please sign in to comment.