-
Notifications
You must be signed in to change notification settings - Fork 11
/
CHANGES.txt
125 lines (71 loc) · 3.22 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
Version History
===============================================================================
Version: 0.7.0 (UNRELEASED)
-------------------------------------------------------------------------------
GOALS:
* Drop support for Python 2.7
* Support Python >= 3.7 (probably)
Version: 0.6.2 (2023-07-04)
-------------------------------------------------------------------------------
FIXES:
* #21: tests/test_parse.py tests ``parse_type.parse`` (per default).
REASON: Using for older installed ``parse`` module may cause weird problems.
RELATED TO: ``parse v1.19.1`` (behavior changed compared to ``v1.19.0``)
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:
* 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)
-------------------------------------------------------------------------------
FIXED:
+ issue #17: setup.py: Remove use of "use_2to3" (submitted by: xxx)
Version: 0.5.6 (2020-09-11)
-------------------------------------------------------------------------------
FIXED:
+ parse issue #119 (same as: #121): int_convert memory effect with number-base discovery
+ UPDATE to parse v1.18.0 (needed by: parse issue #119)
Version: 0.5.5 (2020-09-10)
-------------------------------------------------------------------------------
FIXED:
+ parse PR #122: Fixes issue #121 in parse: int_convert memory effect.
Version: 0.5.4 (2020-09-10)
-------------------------------------------------------------------------------
UPDATED:
+ parse v1.17.0
Version: 0.5.3 (2019-12-15)
-------------------------------------------------------------------------------
UPDATED:
+ setup.py: Add support for Python 3.8.
+ UPDATE: Dependencies
Version: 0.5.2 (2019-07-14)
-------------------------------------------------------------------------------
UPDATED:
+ parse v1.12.0
FIXED:
+ Python3 DeprecationWarning for regex (here: in docstrings).
Version: 0.5.1 (2018-05-27)
-------------------------------------------------------------------------------
CHANGED:
+ Add parse_type.cfparse.Parser(..., case_sensitive=False, ...) parameter
to match functionality in parse.Parser constructor (in parse-1.8.4).
+ UPDATE to parse-1.8.4
Version: 0.5.0 (2018-04-08; includes: v0.4.3)
-------------------------------------------------------------------------------
FIXED:
+ FIX doctest for parse_type.parse module.
CHANGES:
* UPDATE: parse-1.8.3 (was: parse-1.8.2)
NOTE: ``parse`` module and ``parse_type.parse`` module are now identical.
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