Skip to content

Commit

Permalink
release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
8051Enthusiast committed Jul 29, 2024
1 parent de15160 commit b414503
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 13 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
1.1.1 (2024-07-29)
==================
* Make Cargo.lock be in sync with Cargo.toml (oops)

1.1.0 (2024-02-29)
==================
* Added `--min-fn-length` and `--skip-multiple` options to libfind to allow specifying a minimum function length
required to match, and skipping addresses where too many functions are recognized, respectively
* Fix bug where short functions would generate indirect functions below the `--min-fn-length`
threshold (which was previously hardcoded to be 4)
* Updated dependencies (and use `cargo dist` for generating executables for this release)

1.0.0 (2021-08-17)
==================
* Arbitrarily decide that this version is 1.0.0 because it has been stable enough
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
name = "at51"
description = "Some applications for reverse engineering 8051 firmware"
readme = "README.md"
version = "1.1.0"
version = "1.1.1"
authors = ["8051Enthusiast"]
edition = "2018"
edition = "2021"
keywords = ["reverse-engineering", "8051"]
categories = ["command-line-utilities"]
license = "MIT"
Expand All @@ -16,9 +16,9 @@ clap = { version = "4.5", features = ["derive"] }# cl arg parsing
rustfft = "6.2" # base address finding
nom = "7.1" # parse libraries, init structure
num-traits = "^0.2" # omf51 parsing
lazy_static = "1.4.0" # for some default values
lazy_static = "1.5.0" # for some default values
ar = "0.9" # for sdcc library, which is an bsd ar archive
bitflags = "2.4" # for sdcc library
bitflags = "2.6" # for sdcc library
serde_json = "1.0" # json output
serde = { version = "1.0", features = ["derive"] }
dirs = "5.0"
Expand All @@ -34,9 +34,9 @@ lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.11.1"
cargo-dist-version = "0.19.1"
# CI backends to support
ci = ["github"]
ci = "github"
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
Expand Down

0 comments on commit b414503

Please sign in to comment.