Skip to content

Commit 6d024cc

Browse files
committed
Release 0.8.1
1 parent c411545 commit 6d024cc

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

CHANGELOG.rst

+15
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@ CHANGELOG
66
:depth: 1
77
:backlinks: top
88

9+
0.8.1
10+
======
11+
**(2023-07-30)**
12+
13+
Fixed
14+
-----
15+
- a regression that spoiled generated copyright lines was rolled back;
16+
author name and email will be separated by a space like before
17+
18+
Added
19+
-----
20+
- many new additions from the `latest version`_ of the SPDX License List
21+
22+
.. _latest version: https://github.com/spdx/license-list-XML/releases/tag/v3.21
23+
924
0.8.0
1025
======
1126
**(2023-07-23)**

plugin/cpywrite.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
if get(g:, 'loaded_cpywrite') | finish | endif
1010
let g:loaded_cpywrite = 1
1111

12-
let g:cpywrite#version = '0.8.0'
12+
let g:cpywrite#version = '0.8.1'
1313

1414
if empty(get(g:, 'cpywrite#default_license', ''))
1515
let g:cpywrite#default_license = 'Apache-2.0'

rplugin/python3/cpywrite/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
```````
2929
"""
3030

31-
__version__ = '0.8.0'
31+
__version__ = '0.8.1'
3232
__authors__ = ['Robert Di Pardo']
3333
__url__ = 'https://github.com/rdipardo/vim-cpywrite'
3434
__license__ = 'MIT'

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.0
1+
0.8.1

0 commit comments

Comments
 (0)