From ad738ab826341f152a2a8a1bb6ed739317327d6f Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Fri, 24 Jan 2020 21:01:48 +0000 Subject: [PATCH] =?UTF-8?q?v0.5.0=20=E2=80=94=20`json2properties=20--comme?= =?UTF-8?q?nt`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Include installation instructions, GitHub links, and changelog in the Read the Docs site - Gave `json2properties` a `--comment ` option - Support Python 3.8 --- CHANGELOG.md | 4 ++-- LICENSE | 2 +- docs/conf.py | 2 +- javaproperties_cli/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56c3a2d..69ffa25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.5.0 (in development) ------------------------ +v0.5.0 (2020-01-24) +------------------- - Include installation instructions, GitHub links, and changelog in the Read the Docs site - Gave `json2properties` a `--comment ` option diff --git a/LICENSE b/LICENSE index 253524c..896be9e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016-2018 John Thorvald Wodder II +Copyright (c) 2016-2020 John Thorvald Wodder II Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/conf.py b/docs/conf.py index 590005e..9a7eafc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -3,7 +3,7 @@ project = 'javaproperties-cli' author = 'John T. Wodder II' -copyright = '2016-2018 John T. Wodder II' +copyright = '2016-2020 John T. Wodder II' extensions = [ 'sphinx.ext.autodoc', diff --git a/javaproperties_cli/__init__.py b/javaproperties_cli/__init__.py index fb98975..c286513 100644 --- a/javaproperties_cli/__init__.py +++ b/javaproperties_cli/__init__.py @@ -10,7 +10,7 @@ for more information. """ -__version__ = '0.5.0.dev1' +__version__ = '0.5.0' __author__ = 'John Thorvald Wodder II' __author_email__ = 'javaproperties-cli@varonathe.org' __license__ = 'MIT'