Skip to content

Commit

Permalink
Merge pull request #119 from supermihi/prepare-release-2.1.0
Browse files Browse the repository at this point in the history
Prepare release 2.1.0
  • Loading branch information
supermihi authored Nov 17, 2023
2 parents 40fadce + 39f0943 commit 79e3945
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Changelog
## NEXT
## pytaglib 2.1.0 (2023-11-17)
- [!118](https://github.com/supermihi/pytaglib/pull/118): update Taglib version for binary wheels to 1.13.1
- [!117](https://github.com/supermihi/pytaglib/pull/117): modernize packaging / tooling
- [!116](https://github.com/supermihi/pytaglib/pull/116): fix Python 3.12 build

## pytaglib 2.0.0 (2023-03-26)

- update Taglib version for binary wheels to 1.13
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ pytaglib is a very thin wrapper (≈150 lines of [code](src/taglib.pyx)) around

## News

_2023-03-26_ pytaglib-2.0.0 has been released. Major improvements:
_2023-11-17_ pytaglib-2.1.0 has been released. Major improvements:

- **binary wheels** are shipped for all Python versions and platforms
- _breaking change_: `File.path` is now a `Path` object
- support using `File` as context manager
- [!118](https://github.com/supermihi/pytaglib/pull/118): update Taglib version for binary wheels to 1.13.1
- [!116](https://github.com/supermihi/pytaglib/pull/116): fix Python 3.12 build

For a full list of changes in this and previous releases, see the [Changelog](CHANGELOG.md).

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pytaglib"
version = "2.0.0"
version = "2.1.0"
requires-python = ">=3.6"
description = "cross-platform, Python audio metadata (\"tagging\") library based on TagLib"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/taglib.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ from libcpp.utility cimport pair
from pathlib import Path
cimport ctypes

version = '2.0.0'
version = '2.1.0'

cdef str toStr(ctypes.String s):
"""Converts TagLib::String to a Python str."""
Expand Down

0 comments on commit 79e3945

Please sign in to comment.