Skip to content

Commit

Permalink
Release v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sstallion committed Sep 4, 2022
1 parent 492a36d commit 8c67f05
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: python -m pip install -e .[release]
- name: Build release
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v1.0.2] - 2022-09-04

### Changed

- Fix PyPI documentation
Expand All @@ -30,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Initial release

[Unreleased]: https://github.com/sstallion/vimwiki-cli/compare/v1.0.1...HEAD
[Unreleased]: https://github.com/sstallion/vimwiki-cli/compare/v1.0.2...HEAD
[v1.0.2]: https://github.com/sstallion/vimwiki-cli/releases/tag/v1.0.2
[v1.0.1]: https://github.com/sstallion/vimwiki-cli/releases/tag/v1.0.1
[v1.0.0]: https://github.com/sstallion/vimwiki-cli/releases/tag/v1.0.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.0.2

[bumpversion:file:setup.py]
search = version='{current_version}'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
long_description = f.read()

setup(name='vimwiki-cli',
version='1.0.1',
version='1.0.2',
description='Vimwiki Command-Line Interface',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion vimwiki_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.

__version__ = '1.0.1'
__version__ = '1.0.2'

0 comments on commit 8c67f05

Please sign in to comment.