Skip to content

Commit

Permalink
v1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
flozz committed Apr 8, 2024
1 parent 44a901c commit 6b61a29
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,10 @@ Changelog

* **[NEXT]** (changes on ``master``, but not released yet):

* Nothing yet ;)

* **v1.2.4:**

* i18n: Updated Occitan translation (@Mejans, #53)
* misc: Added Python 3.12 support (@flozz)
* misc!: Removed Python 3.7 support (@flozz)
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This file is a memo for the maintainer.
* Update version number in ``setup.py``
* Update version number in ``yoga_image_optimizer/__init__.py``
* Edit / update changelog in ``README.rst``
* Add release in ``linuxpkg/org.flozz.yoga-image-optimizer.metainfo``
* Add release in ``linuxpkg/org.flozz.yoga-image-optimizer.metainfo.xml``
* Check appstream file: ``appstream-util validate-relax linuxpkg/org.flozz.yoga-image-optimizer.metainfo.xml``
* Commit / tag (``git commit -m vX.Y.Z && git tag vX.Y.Z && git push && git push --tags``)

Expand Down
10 changes: 10 additions & 0 deletions linuxpkg/org.flozz.yoga-image-optimizer.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,16 @@

<releases>

<release version="1.2.4" date="2024-04-08">
<description>
<ul>
<li>i18n: Updated Occitan translation (@Mejans, #53)</li>
<li>misc: Added Python 3.12 support (@flozz)</li>
<li>misc!: Removed Python 3.7 support (@flozz)</li>
</ul>
</description>
</release>

<release version="1.2.3" date="2023-09-02">
<description>
<p>Bug fix:</p>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="yoga_image_optimizer",
version="1.2.3",
version="1.2.4",
description="A graphical interface to convert and optimize JPEG, PNG and WebP images (based on YOGA)",
url="https://yoga.flozz.org/",
project_urls={
Expand Down
2 changes: 1 addition & 1 deletion yoga_image_optimizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

APPLICATION_ID = "org.flozz.yoga-image-optimizer"
APPLICATION_NAME = "YOGA Image Optimizer"
VERSION = "1.2.3"
VERSION = "1.2.4"
2 changes: 1 addition & 1 deletion yoga_image_optimizer/about_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, parent=None):
"JPEG, PNG and WebP images (based on YOGA)"
),
version=VERSION,
copyright="Copyright (c) 2021-2023 Fabien LOISON",
copyright="Copyright (c) 2021-2024 Fabien LOISON",
website_label="yoga.flozz.org",
website="https://yoga.flozz.org/",
license_type=Gtk.License.GPL_3_0,
Expand Down

0 comments on commit 6b61a29

Please sign in to comment.