Skip to content

Commit

Permalink
Release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sstallion committed Feb 12, 2024
1 parent 7267191 commit d4246f0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
20 changes: 11 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
## [v1.2.0] - 2024-02-12

- `pre-commit` hook `id: vimwiki-cli` to simplify installing `pre-commit.sh`
script (
[Issue #7](https://github.com/sstallion/vimwiki-cli/issues/7#issue-876664886))
### Removed

### Changed
- Support for Python 2.7 has been removed ([jfishe](https://github.com/jfishe))

- Github Actions workflow `CI` removed python-2.7 and added python-3.11 because
`ubuntu-latest` dropped python-2.7 support. Updated `checkout` and
`setup-python` actions to latest versions.
### Added

- Support for Python 3.11 has been added ([jfishe](https://github.com/jfishe))
- `pre-commit` hook `id: vimwiki-cli` to simplify installing `pre-commit.sh`
script ([#7](https://github.com/sstallion/vimwiki-cli/issues/7#issue-876664886))
([jfishe](https://github.com/jfishe))

## [v1.1.0] - 2023-05-08

Expand Down Expand Up @@ -55,7 +56,8 @@ 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.1.0...HEAD
[Unreleased]: https://github.com/sstallion/vimwiki-cli/compare/v1.2.0...HEAD
[v1.2.0]: https://github.com/sstallion/vimwiki-cli/releases/tag/v1.2.0
[v1.1.0]: https://github.com/sstallion/vimwiki-cli/releases/tag/v1.1.0
[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
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.1.0
current_version = 1.2.0

[bumpversion:file:setup.py]
search = version='{current_version}'
Expand Down
5 changes: 2 additions & 3 deletions 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.1.0',
version='1.2.0',
description='Vimwiki Command-Line Interface',
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -21,13 +21,12 @@
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Text Editors',
'Topic :: Text Editors :: Documentation'
],
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.1.0'
__version__ = '1.2.0'

0 comments on commit d4246f0

Please sign in to comment.