Skip to content

Commit

Permalink
* UPDATE: CHANGELOG
Browse files Browse the repository at this point in the history
* FIX: pyproject.toml, setup.py (classifier: LICENSE related)
  • Loading branch information
jenisys committed Jul 2, 2023
1 parent c7b7880 commit 9e2d0a4
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
28 changes: 26 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,31 @@ Version History
Version: 0.7.0 (UNRELEASED)
-------------------------------------------------------------------------------

GOALS:

* Drop support for Python 2.7
* Support Python >= 3.7 (probably)


Version: 0.6.1 (2023-07-02)
-------------------------------------------------------------------------------

* Switch to MIT license (same as: `parse`_ module)
* Use SPDX-License-Identifier in source code (to simplify understanding)
* UPDATE/SYNC to `parse`_ v1.19.1
* ADDED: ``pyproject.toml`` to support newer ``pip`` versions
REASON: ``setup.py`` becomes DEPRECATED in 2023-09 for newer ``pip`` versions.

FIXED:

* Issue #19: 0.6.0: pytest is failing in two units (submitted by: kloczek; caused by: `parse`_ v1.19.1)
* Issue #1: Licensing confusion

DEVELOPMENT:

* Renamed default branch of Git repository to "main" (was: "master").
* Use github-actions as CI/CD pipeline.
* VCS: Renamed default branch of Git repository to "main" (was: "master").
* CI: Use github-actions as CI pipeline.


Version: 0.6.0 (2022-01-18)
-------------------------------------------------------------------------------
Expand Down Expand Up @@ -90,3 +111,6 @@ BACKWARD INCOMPATIBLE CHANGES:

* RENAMED: type_converter.regex_group_count attribute (was: .group_count)
(pull-request review changes of the ``parse`` module).


.. _parse: https://github.com/r1chardj0n3s/parse
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def find_packages_by_root_package(where):
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
Expand Down

0 comments on commit 9e2d0a4

Please sign in to comment.