Release Version 1.1.1

### Fixed

- Fixed `yaclog release -C -c` not committing changes to cargo.toml
pull/7/head 1.1.1
Andrew Cassidy 2 years ago
parent 32f20e677e
commit 465b818ca2

@ -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

@ -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))

Loading…
Cancel
Save