Skip to content

Commit

Permalink
bump version to 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
citruz committed Jul 31, 2023
1 parent 77a3c78 commit 47e11f0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dmgwiz"
description = "Extract filesystem data from DMG files"
version = "0.2.3"
version = "0.2.4"
authors = ["Felix Seele <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
DmgWiz
======
![Build and Test](https://github.com/citruz/dmgwiz/workflows/Build%20and%20Test/badge.svg?branch=main)
[![CI](https://github.com/citruz/dmgwiz/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/citruz/dmgwiz/actions/workflows/main.yml)
[![crates.io](https://img.shields.io/crates/v/dmgwiz)](https://crates.io/crates/dmgwiz)

DmgWiz lets you extract raw filesystem data from compressed and encrypted DMG files. It started as a [dmg2img](http://vu1tur.eu.org/tools/) clone but has more features and is more secure due to the Rust programming language.
Expand Down Expand Up @@ -50,6 +50,9 @@ dmgwiz = {version = "0.2", default-features = false}
Changelog
---------

0.2.4
- Fixed parsing of XML with plist 1.5

0.2.3
- Fixed handling of DMGs with a non-null value in blkx_table.data_offset

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fn error(msg: String) -> ! {

fn main() {
let matches = App::new("dmgwiz")
.version("0.2.3")
.version("0.2.4")
.author("Felix Seele <[email protected]>")
.about("Extract filesystem data from DMG files")
.arg(
Expand Down

0 comments on commit 47e11f0

Please sign in to comment.