From 54dbb3e1c14e45595c3770f3fffc3578c43e6073 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Tue, 5 Oct 2021 16:39:23 -0400 Subject: [PATCH] =?UTF-8?q?v0.8.1=20=E2=80=94=20Typing=20bugfix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix a typing issue in Python 3.9 - Support Python 3.10 --- CHANGELOG.md | 4 ++-- LICENSE | 2 +- docs/changelog.rst | 4 ++-- docs/conf.py | 2 +- src/javaproperties/__init__.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fad14e..81dbe37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.8.1 (in development) ------------------------ +v0.8.1 (2021-10-05) +------------------- - Fix a typing issue in Python 3.9 - Support Python 3.10 diff --git a/LICENSE b/LICENSE index 896be9e..c5cf41d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016-2020 John Thorvald Wodder II +Copyright (c) 2016-2021 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/changelog.rst b/docs/changelog.rst index f4ea511..cb2349b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,8 +3,8 @@ Changelog ========= -v0.8.1 (in development) ------------------------ +v0.8.1 (2021-10-05) +------------------- - Fix a typing issue in Python 3.9 diff --git a/docs/conf.py b/docs/conf.py index ba9492e..4caf1b9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ project = "javaproperties" author = "John T. Wodder II" -copyright = "2016-2020 John T. Wodder II" +copyright = "2016-2021 John T. Wodder II" extensions = [ "sphinx.ext.autodoc", diff --git a/src/javaproperties/__init__.py b/src/javaproperties/__init__.py index 747a654..f327f5d 100644 --- a/src/javaproperties/__init__.py +++ b/src/javaproperties/__init__.py @@ -36,7 +36,7 @@ ) from .xmlprops import dump_xml, dumps_xml, load_xml, loads_xml -__version__ = "0.8.1.dev1" +__version__ = "0.8.1" __author__ = "John Thorvald Wodder II" __author_email__ = "javaproperties@varonathe.org" __license__ = "MIT"