Skip to content

Commit

Permalink
Release Version 1.1.1
Browse files Browse the repository at this point in the history
### Fixed

- Fixed `yaclog release -C -c` not committing changes to cargo.toml
  • Loading branch information
drewcassidy committed Aug 15, 2022
1 parent 32f20e6 commit 465b818
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file

## Version 1.1.1 - 2022-08-15

### Fixed

- Fixed `yaclog release -C -c` not committing changes to cargo.toml


## Version 1.1.0 - 2022-08-14

### Added
Expand Down
3 changes: 3 additions & 0 deletions yaclog/cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,9 @@ def release(obj: Changelog, version_name, rel_seg, pre_seg, commit, cargo):

repo.index.add(obj.path)

if cargo:
repo.index.add("Cargo.toml")

tracked = len(repo.index.diff(repo.head.commit))
untracked = len(repo.index.diff(None))

Expand Down

0 comments on commit 465b818

Please sign in to comment.