Skip to content

Commit

Permalink
Bump version to 0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mportesdev committed Dec 8, 2023
1 parent 4c54da2 commit 4eb5d47
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 44 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@

<!-- scriv-insert-here -->

<a id='changelog-0.12.1'></a>
## 0.12.1 — 2023-12-08

### Added

- Library API: the optional `bg_color` parameter to `PictureShow.save_pdf` and `pictures_to_pdf` to specify page background color (#29)
- CLI: the `--bg-color` option to set page background color (#29)


<a id='changelog-0.12.0'></a>
## 0.12.0 — 2023-12-04

### Changed

- Library API: the `page_size`, `landscape`, `margin`, `layout`, `stretch_small`, `fill_area` and `force_overwrite`
parameters to `PictureShow.save_pdf` are now keyword-only
parameters to `PictureShow.save_pdf` are now keyword-only (#28)


<a id='changelog-0.11.0'></a>
Expand Down
41 changes: 0 additions & 41 deletions changelog.d/20231206_123338_michalportes1_bg_color.md

This file was deleted.

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 = "poetry.core.masonry.api"

[tool.poetry]
name = "pictureshow"
version = "0.12.0"
version = "0.12.1"
description = "Save pictures to PDF."
authors = ["Michal Porteš <michalportes1@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/pictureshow/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .core import PictureShow, pictures_to_pdf

__version__ = '0.12.0'
__version__ = '0.12.1'

__all__ = ['__version__', 'PictureShow', 'pictures_to_pdf']

0 comments on commit 4eb5d47

Please sign in to comment.