Changeset - 02ea0b1f1862
[Not reviewed]
1.0.0
0 2 0
Branko Majic (branko) - 21 months ago 2024-02-24 23:02:46
branko@majic.rs
Noticket: Preparing release 1.0.0.
2 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
docs/releasenotes.rst
Show inline comments
 
.. Copyright (C) 2018, 2020, 2024 Branko Majic
 

	
 
   This file is part of Gimmecert documentation.
 

	
 
   This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
 
   Unported License. To view a copy of this license, visit
 
   http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative
 
   Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
 

	
 

	
 
Release notes
 
=============
 

	
 

	
 
NEXT RELEASE
 
------------
 
1.0.0
 
-----
 

	
 
This release adds support for Python 3.10, 3.11, and 3.12, while
 
dropping support for Python 3.5, 3.6, and 3.7. Package dependencies
 
have been updated as well.
 

	
 
.. warning::
 

	
 
   This release contains the following breaking changes:
 

	
 
   - Support for Python 3.5, 3.6, and 3.7 has been dropped. Make sure
 
     that you are using one of the supported Python versions prior to
 
     upgrading *Gimmecert*.
 

	
 
Resolved issues:
 

	
 
- **Tasks**:
 

	
 
  - `GC-42: Support for Python 3.10 <https://projects.majic.rs/gimmecert/issues/GC-42>`_
 
  - `GC-43: Support for Python 3.11 <https://projects.majic.rs/gimmecert/issues/GC-43>`_
 
  - `GC-44: Support for Python 3.12 <https://projects.majic.rs/gimmecert/issues/GC-44>`_
 
  - `GC-45: Drop support for Python 3.5, Python 3.6, and Python 3.7 <https://projects.majic.rs/gimmecert/issues/GC-45>`_
 

	
 

	
 
0.5.0
setup.py
Show inline comments
 
@@ -44,49 +44,49 @@ test_requirements = [
 
    'pytest>=8.0,<8.1',
 
    'pytest-cov>=4.1,<4.2',
 
    'tox>=4.13,<4.14',
 
    'pexpect>=4.9,<4.10',
 
]
 

	
 
release_requirements = [
 
    'twine',
 
]
 

	
 
development_requirements = doc_requirements + test_requirements + test_lint_requirements + release_requirements
 

	
 
extras_requirements = {
 
    'devel': development_requirements,
 
    'doc': doc_requirements,
 
    'test': test_requirements,
 
    'testlint': test_lint_requirements,
 
}
 

	
 
# allow setup.py to be run from any path
 
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
 

	
 
setup(
 
    name='gimmecert',
 
    version='0.0.0',
 
    version='1.0.0',
 
    packages=find_packages(exclude=['tests', 'functional_tests']),
 
    include_package_data=True,
 
    license='GPLv3+',
 
    description='A simple tool for quickly issuing server and client certificates.',
 
    long_description=README,
 
    url='http://projects.majic.rs/gimmecert',
 
    author='Branko Majic',
 
    author_email='branko@majic.rs',
 
    python_requires=python_requirements,
 
    install_requires=install_requirements,
 
    tests_require=test_requirements,
 
    extras_require=extras_requirements,
 
    entry_points={
 
        'console_scripts': ['gimmecert=gimmecert.cli:main'],
 
    },
 
    classifiers=[
 
        'Development Status :: 5 - Production/Stable',
 
        'Environment :: Console',
 
        'Intended Audience :: Developers',
 
        'Intended Audience :: System Administrators',
 
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
 
        'Operating System :: OS Independent',
 
        'Programming Language :: Python :: 3.8',
 
        'Programming Language :: Python :: 3.9',
0 comments (0 inline, 0 general)