Skip to content

Commit

Permalink
Release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sstallion committed Sep 4, 2022
1 parent 890e0df commit 6601993
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
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.1] - 2022-09-04

### Added

- Add support for Python 3.10
Expand All @@ -24,5 +26,6 @@ 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.0...HEAD
[Unreleased]: https://github.com/sstallion/vimwiki-cli/compare/v1.0.1...HEAD
[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 LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2021 Steven Stallion <[email protected]>
Copyright (C) 2022 Steven Stallion <[email protected]>

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
Expand Down
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.0
current_version = 1.0.1

[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.0',
version='1.0.1',
description='Vimwiki Command-Line Interface',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
4 changes: 2 additions & 2 deletions vimwiki_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2021 Steven Stallion <[email protected]>
# Copyright (C) 2022 Steven Stallion <[email protected]>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
Expand All @@ -21,4 +21,4 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.

__version__ = '1.0.0'
__version__ = '1.0.1'

0 comments on commit 6601993

Please sign in to comment.