Skip to content

Commit

Permalink
Release Version 1.0.2
Browse files Browse the repository at this point in the history
### Changed

- Updated to support Click version 8
- Modified module documentation page titles to include a module role

### Fixed

- Fixed tag names with spaces in versions
  • Loading branch information
drewcassidy committed May 12, 2021
1 parent 52fc36a commit 5a6cb51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Get version name and body
run: |
echo "VERSION_TILE=Version $(yaclog show -n)" >> $GITHUB_ENV
echo "VERSION_TILE=$(yaclog show -n)" >> $GITHUB_ENV
echo "$(yaclog show -mb)" >> RELEASE.md
- name: Publish to PyPI
Expand Down
2 changes: 1 addition & 1 deletion yaclog/cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def release(obj: Changelog, version_name, rel_seg, pre_seg, commit):
click.confirm(' '.join(message), abort=True)

if tracked > 0:
commit = repo.index.commit(f'Version {cur_version.name}\n\n{cur_version.body()}')
commit = repo.index.commit(f'Release {cur_version.name}\n\n{cur_version.body()}')
click.echo(f"Created commit {click.style(repo.head.commit.hexsha[0:7], fg='green')}")
else:
commit = repo.head.commit
Expand Down

0 comments on commit 5a6cb51

Please sign in to comment.