Skip to content

Commit

Permalink
Bump version: v8.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarlow83 committed Nov 13, 2023
1 parent 08eab57 commit 1accc7e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions docs/releasenotes/version8.rst
@@ -1,3 +1,13 @@
v8.7.0
======

- ``pikepdf.PdfMatrix`` is now deprecated, in favor of ``pikepdf.Matrix``. The former,
unfortunately, implemented some operations backwards compared to the PDF reference
manual. The new class fixes these issues, and adds more functionality, promoting
transformation matrix to first class objects. ``PdfMatrix`` is now deprecated and
will be removed in the next major release.
- Improve behavior around truthiness of ``pikepdf.Name``.

v8.6.0
======

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pikepdf"
version = "8.6.0"
version = "8.7.0"
description = "Read and write PDFs with Python, powered by qpdf"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion src/pikepdf/__init__.py
Expand Up @@ -7,7 +7,7 @@

from __future__ import annotations

__version__ = "8.6.0"
__version__ = "8.7.0"

try:
from . import _core
Expand Down

0 comments on commit 1accc7e

Please sign in to comment.