Skip to content

Update news for v0.3.0 #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## tinyvdiff 0.3.0

### New features

- The pytest plugin now supports multi-page PDF files.
Each multi-page PDF will correspond to SVG snapshots with file name
suffixes `_p1.svg`, `_p2.svg`, `...` (#15).
- Added a pytest parser option `--tinyvdiff-pdf2svg` to allow specifying a
custom path to `pdf2svg` in test files or project-wide `conftest.py`
when needed (#18).

### Testing

- Added unit tests for the low-level conversion and snapshotting facilities
that support the pytest plugin (#17).

### Improvements

- Exposed key functions in `__init__.py` so that users can use the simpler
`import tinyvdiff as tvd` and `tvd.` syntax to access them (#16).

## tinyvdiff 0.2.0

### New features
Expand Down
21 changes: 21 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## tinyvdiff 0.3.0

### New features

- The pytest plugin now supports multi-page PDF files.
Each multi-page PDF will correspond to SVG snapshots with file name
suffixes `_p1.svg`, `_p2.svg`, `...` (#15).
- Added a pytest parser option `--tinyvdiff-pdf2svg` to allow specifying a
custom path to `pdf2svg` in test files or project-wide `conftest.py`
when needed (#18).

### Testing

- Added unit tests for the low-level conversion and snapshotting facilities
that support the pytest plugin (#17).

### Improvements

- Exposed key functions in `__init__.py` so that users can use the simpler
`import tinyvdiff as tvd` and `tvd.` syntax to access them (#16).

## tinyvdiff 0.2.0

### New features
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tinyvdiff"
version = "0.2.0"
version = "0.3.0"
description = "Minimalist visual regression testing helpers"
authors = [
{ name = "Nan Xiao", email = "me@nanx.me" }
Expand Down
Loading