diff --git a/CHANGELOG.md b/CHANGELOG.md index f70693e2..8fdade89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ -## Upcoming +## 0.2 + +### February 21, 2024 * Updated Batcher to work with GIMP 2.99.18. Due to backwards incompatible changes, Batcher will no longer work with GIMP 2.99.16 and below. * Moved menu entries to the section containing `Export...` and `Export As...`. diff --git a/README.md b/README.md index b62961ef..75efb42e 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Batcher is a [GIMP](https://www.gimp.org/) plug-in for batch-exporting layers as * Limit export/editing to layers matching constraints -### [Download latest release](https://github.com/kamilburda/batcher/releases/tag/0.1) (0.1, January 31, 2024) +### [Download latest release](https://github.com/kamilburda/batcher/releases/tag/0.2) (0.2, February 21, 2024) ## Installation and Usage diff --git a/batcher/config/config.py b/batcher/config/config.py index 71ca6b4e..d8836df8 100644 --- a/batcher/config/config.py +++ b/batcher/config/config.py @@ -11,8 +11,8 @@ c.PLUGIN_NAME = 'batcher' c.PLUGIN_TITLE = lambda: _('Batcher') -c.PLUGIN_VERSION = '0.1' -c.PLUGIN_VERSION_RELEASE_DATE = 'January 31, 2024' +c.PLUGIN_VERSION = '0.2' +c.PLUGIN_VERSION_RELEASE_DATE = 'February 21, 2024' c.AUTHOR_NAME = 'Kamil Burda' c.COPYRIGHT_YEARS = '2023' c.PAGE_URL = 'https://kamilburda.github.io/batcher'