Skip to content

Commit

Permalink
feat: 0.2.17 Fix C header gen, add config file reading (#175)
Browse files Browse the repository at this point in the history
- Read config file from $HOME/.anvil/anvil.toml
- Fix C header generation not using passed tag's info
- Bump EXPECTED_AMBOSO_API_LEVEL to 2.0.7
  • Loading branch information
jgabaut authored Aug 30, 2024
1 parent 657fd53 commit 4cf68d4
Show file tree
Hide file tree
Showing 6 changed files with 330 additions and 51 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.2.17] - 2024-08-29

### Added

- Read global config file from $HOME/.anvil/anvil.toml

### Changed

- Fix C header generation not using passed tag's info
- Bump expected amboso version to 2.0.7

## [0.2.16] - 2024-08-10

### Changed

- Print warranty info after version splash
- Bump deps

## [0.2.15] - 2024-07-03

### Changed
Expand Down
112 changes: 99 additions & 13 deletions Cargo.lock

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

7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "invil"
description = "A port of amboso to Rust"
version = "0.2.16"
version = "0.2.17"
edition = "2021"
license = "GPL-3.0-only"
homepage = "https://github.com/jgabaut/invil"
Expand All @@ -24,8 +24,9 @@ anvilPy = ["dep:flate2", "dep:tar", "dep:url"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.5.14", features = ["derive"] }
flate2 = { version = "1.0.31", optional = true }
clap = { version = "4.5.16", features = ["derive"] }
dirs = "5.0.1"
flate2 = { version = "1.0.33", optional = true }
git2 = "0.19.0"
is_executable = "1.0.1"
log = "0.4.22"
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@
- [x] `-a` to set compatibility level
- [x] `-k` to set project type
- [x] `-O` to set stego.lock dir (defaults to working directory)
- [x] Retrocompatible `stego.lock` parsing, up to `1.7.x`
- [x] Init subcommand uses passed directory's basename for flags
- [x] Read global config file from `$HOME/.anvil/anvil.toml`

## Extended amboso features <a name = "extended_amboso"></a>

Expand Down
Loading

0 comments on commit 4cf68d4

Please sign in to comment.