mirror of
https://github.com/drewcassidy/yaclog.git
synced 2024-09-01 14:58:58 +00:00
Release Version 1.1.1
### Fixed - Fixed `yaclog release -C -c` not committing changes to cargo.toml
This commit is contained in:
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…
Reference in New Issue
Block a user