File: CHANGELOG.rst

package info (click to toggle)
python-url-matcher 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 372 kB
  • sloc: python: 627; makefile: 17
file content (51 lines) | stat: -rw-r--r-- 1,351 bytes parent folder | download | duplicates (3)
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
=========
Changelog
=========

0.6.0 (2025-02-14)
------------------

* Dropped Python 3.8 support.
* Added Python 3.13 support.
* Improved type hints and added ``py.typed``.
* CI improvements.

0.5.0 (2024-04-15)
------------------

* Added the ``include_universal`` argument to :meth:`.URLMatcher.match` and
  :meth:`.URLMatcher.match_all`. It can be set to ``False`` to skip universal
  matchers.
* Added the :meth:`.URLMatcher.match_universal` method that returns only
  identifiers of universal matchers.
* Added ``.readthedocs.yml``.

0.4.0 (2024-04-03)
------------------

* Added official support for Python 3.12.
* Added the :meth:`.URLMatcher.match_all` method that returns all matching
  identifiers.
* Adding a :class:`~.Patterns` instance with several patterns for the same
  domain to a :class:`~.URLMatcher` no longer creates multiple identical
  :class:`~.matcher.PatternsMatcher` instances.
* CI improvements.

0.3.0 (2023-09-21)
------------------

* Drop Python 3.7 support, make Python 3.11 support official.
* Support tldextract >= 3.6, make the requirement of tldextract >= 1.2
  explicit.

0.2.0 (2022-02-01)
------------------

* Update :class:`~.Patterns` to be **frozen** so instances can easily be
  deduped based on its hash uniqueness.
* Remove Python 3.6 support

0.1.0 (2021-11-19)
------------------

* Initial release