Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rdipardo committed Jul 3, 2021
1 parent 5b462d0 commit 577eacf
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 11 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@ CHANGELOG
:depth: 1
:backlinks: top

0.5.0
======
**(2021-07-03)**

Fixed
-----
- fallback to a system user name if no git email exists

Changed
-------
- preserve existing markup, encoding and doctype declarations at the top of
XML, HTML or PHP files

Added
-----
- support for these file types:

+ Julia
+ Prolog (detected by ``&syntax`` when the extension is ``*.pl``)
+ XML

0.4.0
======
**(2021-05-24)**
Expand All @@ -16,6 +37,7 @@ Fixed

Changed
-------
- the initial value of ``g:cpywrite#default_license`` is now ``'Apache-2.0'``
- drop the `deprecated FreeBSD variant`_ of the BSD 2-Clause License
- detect more styles of authorship template, like a generic range years
(e.g. ``<yyyy, yyyy>``), or an actual year that's merely historical
Expand Down
11 changes: 3 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,10 @@ vim-cpywrite

|gh-actions| |current version|

:WARNING: **This branch is for development purposes.**
**End users are advised to checkout a** `release`_ **package**

.. _release: https://github.com/rdipardo/vim-cpywrite/releases

Generate copyright headers for any open source license

.. figure:: https://raw.githubusercontent.com/rdipardo/vim-cpywrite/media/pre/nvim_043_ver_031.gif
:alt: nvim-043-linux-demo
.. figure:: https://raw.githubusercontent.com/rdipardo/vim-cpywrite/media/rel/vim_8.2.2549.gif
:alt: vim-win-x64-demo
:align: center
:width: 900

Expand Down Expand Up @@ -232,7 +227,7 @@ License

Distributed under the terms of the MIT license.

.. |gh-actions| image:: https://github.com/rdipardo/vim-cpywrite/workflows/(Neo)vim/badge.svg?branch=pre-release
.. |gh-actions| image:: https://github.com/rdipardo/vim-cpywrite/workflows/(Neo)vim/badge.svg?branch=master
:alt: Build Status
:target: https://github.com/rdipardo/vim-cpywrite/actions
.. |current version| image:: https://img.shields.io/github/v/release/rdipardo/vim-cpywrite?logo=vim
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.5.0-pre'
let g:cpywrite#version = '0.5.0'

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

__version__ = '0.5.0-pre'
__version__ = '0.5.0'
__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.5.0-pre
0.5.0

0 comments on commit 577eacf

Please sign in to comment.