Skip to content

Commit

Permalink
Release 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rdipardo committed Jul 30, 2023
1 parent c411545 commit 6d024cc
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ CHANGELOG
:depth: 1
:backlinks: top

0.8.1
======
**(2023-07-30)**

Fixed
-----
- a regression that spoiled generated copyright lines was rolled back;
author name and email will be separated by a space like before

Added
-----
- many new additions from the `latest version`_ of the SPDX License List

.. _latest version: https://github.com/spdx/license-list-XML/releases/tag/v3.21

0.8.0
======
**(2023-07-23)**
Expand Down
2 changes: 1 addition & 1 deletion plugin/cpywrite.vim
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
if get(g:, 'loaded_cpywrite') | finish | endif
let g:loaded_cpywrite = 1

let g:cpywrite#version = '0.8.0'
let g:cpywrite#version = '0.8.1'

if empty(get(g:, 'cpywrite#default_license', ''))
let g:cpywrite#default_license = 'Apache-2.0'
Expand Down
2 changes: 1 addition & 1 deletion rplugin/python3/cpywrite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
```````
"""

__version__ = '0.8.0'
__version__ = '0.8.1'
__authors__ = ['Robert Di Pardo']
__url__ = 'https://github.com/rdipardo/vim-cpywrite'
__license__ = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.0
0.8.1

0 comments on commit 6d024cc

Please sign in to comment.