Skip to content

Commit 9e2d0a4

Browse files
committed
* UPDATE: CHANGELOG
* FIX: pyproject.toml, setup.py (classifier: LICENSE related)
1 parent c7b7880 commit 9e2d0a4

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

CHANGES.txt

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,31 @@ Version History
55
Version: 0.7.0 (UNRELEASED)
66
-------------------------------------------------------------------------------
77

8+
GOALS:
9+
10+
* Drop support for Python 2.7
11+
* Support Python >= 3.7 (probably)
12+
13+
14+
Version: 0.6.1 (2023-07-02)
15+
-------------------------------------------------------------------------------
16+
17+
* Switch to MIT license (same as: `parse`_ module)
18+
* Use SPDX-License-Identifier in source code (to simplify understanding)
19+
* UPDATE/SYNC to `parse`_ v1.19.1
20+
* ADDED: ``pyproject.toml`` to support newer ``pip`` versions
21+
REASON: ``setup.py`` becomes DEPRECATED in 2023-09 for newer ``pip`` versions.
22+
23+
FIXED:
24+
25+
* Issue #19: 0.6.0: pytest is failing in two units (submitted by: kloczek; caused by: `parse`_ v1.19.1)
26+
* Issue #1: Licensing confusion
27+
828
DEVELOPMENT:
929

10-
* Renamed default branch of Git repository to "main" (was: "master").
11-
* Use github-actions as CI/CD pipeline.
30+
* VCS: Renamed default branch of Git repository to "main" (was: "master").
31+
* CI: Use github-actions as CI pipeline.
32+
1233

1334
Version: 0.6.0 (2022-01-18)
1435
-------------------------------------------------------------------------------
@@ -90,3 +111,6 @@ BACKWARD INCOMPATIBLE CHANGES:
90111

91112
* RENAMED: type_converter.regex_group_count attribute (was: .group_count)
92113
(pull-request review changes of the ``parse`` module).
114+
115+
116+
.. _parse: https://github.com/r1chardj0n3s/parse

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers = [
2424
"Environment :: Console",
2525
"Environment :: Web Environment",
2626
"Intended Audience :: Developers",
27-
"License :: OSI Approved :: MIT",
27+
"License :: OSI Approved :: MIT License",
2828
"Operating System :: OS Independent",
2929
"Programming Language :: Python :: 2.7",
3030
"Programming Language :: Python :: 3.2",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def find_packages_by_root_package(where):
108108
"Environment :: Console",
109109
"Environment :: Web Environment",
110110
"Intended Audience :: Developers",
111-
"License :: OSI Approved :: BSD License",
111+
"License :: OSI Approved :: MIT License",
112112
"Operating System :: OS Independent",
113113
"Programming Language :: Python :: 2.7",
114114
"Programming Language :: Python :: 3.2",

0 commit comments

Comments
 (0)