diff options
author | Eric Lin <anselor@gmail.com> | 2020-09-10 12:16:42 -0400 |
---|---|---|
committer | anselor <anselor@gmail.com> | 2020-09-11 09:11:24 -0400 |
commit | eb0669e6a8b8cc7ad2bde5b9cb838bc747a6eba2 (patch) | |
tree | 6838da4315ca8a5fcc16adadc0caddcd79c2cb3c | |
parent | d25534abb4c1dac20defe52959040c43ba525d2f (diff) | |
download | cmd2-git-eb0669e6a8b8cc7ad2bde5b9cb838bc747a6eba2.tar.gz |
Updated URL and documentation in preparation for cmd2-ext-test 0.2.0 release
-rw-r--r-- | plugins/ext_test/CHANGELOG.md | 12 | ||||
-rw-r--r-- | plugins/ext_test/setup.py | 8 |
2 files changed, 13 insertions, 7 deletions
diff --git a/plugins/ext_test/CHANGELOG.md b/plugins/ext_test/CHANGELOG.md index c2880b64..031d4227 100644 --- a/plugins/ext_test/CHANGELOG.md +++ b/plugins/ext_test/CHANGELOG.md @@ -4,11 +4,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## 0.2.0 (TBD) -- Relocated inside of cmd2 project -- Fixes to match cmd2 API changes +## 0.2.0 (2020-09-11) +* Updated documentation to reflect new home inside of main cmd2 repo. +* Updated python version requirements to match cmd2 -## 0.1.0 (2020-03-09) +## 0.1.2 (2020-08-03) +* Bug Fixes + * Applied fix to match change in cmd2 APIs + +## 0.1.1 (2020-03-09) ### Added - Initial contribution diff --git a/plugins/ext_test/setup.py b/plugins/ext_test/setup.py index d48e9871..7bc29b5b 100644 --- a/plugins/ext_test/setup.py +++ b/plugins/ext_test/setup.py @@ -28,17 +28,17 @@ setuptools.setup( author='Eric Lin', author_email='anselor@gmail.com', - url='https://github.com/python-cmd2/cmd2-ext-test', + url='https://github.com/python-cmd2/cmd2/tree/master/plugins/ext_test', license='MIT', packages=['cmd2_ext_test'], - python_requires='>=3.4', + python_requires='>=3.5', install_requires=['cmd2 >= 0.9.4, <=2'], setup_requires=['setuptools_scm >= 3.0'], classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Operating System :: OS Independent', 'Topic :: Software Development :: Libraries :: Python Modules', @@ -48,6 +48,8 @@ setuptools.setup( 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language:: Python:: 3.8', + 'Programming Language:: Python:: 3.9', ], # dependencies for development and testing |