Skip to content

Commit 1bb8d6d

Browse files
committed
Update changelog and set version to 1.3.0
1 parent 22b2bbc commit 1bb8d6d

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGES.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Changelog
22
=========
33

4+
Changes in 1.3.0 (2025-07-26):
5+
------------------------------
6+
* Modernized, PEP 518 compatible, build system using ``pyproject.toml``.
7+
* Minimum supported Python version is now 3.9.
8+
* :issue:`51` tests requiring a physical disc are not run by default anymore.
9+
Set the environment variable ``DISCID_TESTS_REQUIRE_DISC`` to enable them
10+
or run ``make disccheck``.
11+
* Fixed :func:`put` to work with first track number greater than 1.
12+
* Add Disc.cddb_query_string property.
13+
414
Changes in 1.2.0 (2019-02-23):
515
------------------------------
616
* improve install with pip

discid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import discid.libdiscid
3434
import discid.disc
3535

36-
__version__ = "1.2.0"
36+
__version__ = "1.3.0"
3737

3838

3939
# these contants are defined here so sphinx can catch the "docstrings"

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "discid"
7-
version = "1.2.0"
7+
version = "1.3.0"
88
description = "Python binding of Libdiscid"
99
authors = [
1010
{name = "Johannes Dewender", email = "[email protected]"},
11+
{name = "Philipp Wolfer", email = "[email protected]"},
1112
]
1213
requires-python = ">=3.9"
1314
readme = "README.rst"

0 commit comments

Comments
 (0)