From b23dbdb8d096db6110a84f8e9c0e2bf538588607 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 25 May 2020 08:32:46 +0800 Subject: [PATCH] Bump version number and release notes for v0.1.3 release. --- CHANGELOG.rst | 17 +++++++++++++++++ changes/10.feature.rst | 1 - changes/15.misc.rst | 1 - changes/16.misc.rst | 1 - changes/17.feature.rst | 1 - changes/19.feature.rst | 1 - changes/5.feature.rst | 1 - setup.cfg | 3 ++- src/travertino/__init__.py | 2 +- 9 files changed, 20 insertions(+), 8 deletions(-) delete mode 100644 changes/10.feature.rst delete mode 100644 changes/15.misc.rst delete mode 100644 changes/16.misc.rst delete mode 100644 changes/17.feature.rst delete mode 100644 changes/19.feature.rst delete mode 100644 changes/5.feature.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 64222f6..e2d3026 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,23 @@ Changelog .. towncrier release notes start +0.1.3 (2020-05-25) +------------------ + +Features +^^^^^^^^ + +* Introduced some constants used by Pack that have more general uses. (`#5 `_) +* Added the ability to add, insert and remove children from a node tree. (`#10 `_) +* Added color validation in rgba and hsla constructors (`#17 `_) +* Added support for declaring a system default font size. (`#19 `_) + +Misc +^^^^ + +* `#15 `_, `#16 `_ + + 0.1.2 ----- * Added constants for system and message fonts diff --git a/changes/10.feature.rst b/changes/10.feature.rst deleted file mode 100644 index c4a641f..0000000 --- a/changes/10.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added the ability to add, insert and remove children from a node tree. \ No newline at end of file diff --git a/changes/15.misc.rst b/changes/15.misc.rst deleted file mode 100644 index aa4beab..0000000 --- a/changes/15.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Added CI checks for Towncrier, MANIFEST.in, and Twine packaging; replaced Beefore with flake8. \ No newline at end of file diff --git a/changes/16.misc.rst b/changes/16.misc.rst deleted file mode 100644 index eeab256..0000000 --- a/changes/16.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Simplified CI checks for packaging. \ No newline at end of file diff --git a/changes/17.feature.rst b/changes/17.feature.rst deleted file mode 100644 index feb836c..0000000 --- a/changes/17.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added color validation in rgba and hsla constructors \ No newline at end of file diff --git a/changes/19.feature.rst b/changes/19.feature.rst deleted file mode 100644 index 127de57..0000000 --- a/changes/19.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added support for delaring a system default font size. \ No newline at end of file diff --git a/changes/5.feature.rst b/changes/5.feature.rst deleted file mode 100644 index fb0a6b7..0000000 --- a/changes/5.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Introduced some constants used by Pack that have more general uses. \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 4d1ba9c..2c824a1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,9 +13,10 @@ classifiers= License :: OSI Approved :: BSD License Operating System :: OS Independent Programming Language :: Python :: 3 - Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 Programming Language :: Python :: 3 :: Only Topic :: Software Development Topic :: Software Development :: User Interfaces diff --git a/src/travertino/__init__.py b/src/travertino/__init__.py index b2e42db..8379c6f 100644 --- a/src/travertino/__init__.py +++ b/src/travertino/__init__.py @@ -6,4 +6,4 @@ # __version__ = '1.2.3' # Final Release # __version__ = '1.2.3.post1' # Post Release 1 -__version__ = '0.1.3.dev1' +__version__ = '0.1.3'