From b43ccbdfa4c8b1101fcedf5b98209c7fa64baf25 Mon Sep 17 00:00:00 2001 From: Hugo Posnic Date: Sun, 1 May 2022 16:56:57 +0200 Subject: [PATCH] Bump version to 1.3.0 --- CHANGELOG.md | 9 +++++++++ data/com.github.huluti.Curtail.appdata.xml.in | 11 +++++++++++ debian/changelog | 9 +++++++++ meson.build | 2 +- src/window.py | 2 +- 5 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a4ff68..d45a90f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Change Log All notable changes to this project will be documented in this file. +## [1.3.0] - 2022-05-01 +### Added +- Add option to preserve file attributes if possible. + +### Changed +- Update image libraries. +- Update French translation. +- Update Russian translation. Thank's to @prokoudine. + ## [1.2.2] - 2021-11-13 ### Added - Add Turkish translation. Thank's to @05akalan57. diff --git a/data/com.github.huluti.Curtail.appdata.xml.in b/data/com.github.huluti.Curtail.appdata.xml.in index b29e539..a208348 100644 --- a/data/com.github.huluti.Curtail.appdata.xml.in +++ b/data/com.github.huluti.Curtail.appdata.xml.in @@ -35,6 +35,17 @@ com.github.huluti.Curtail.desktop + + +

Here's the changelog of this version:

+
    +
  • Add option to preserve file attributes if possible.
  • +
  • Update image libraries.
  • +
  • Update French translation.
  • +
  • Update Russian translation. Thank's to @prokoudine.
  • +
+
+

Here's the changelog of this version:

diff --git a/debian/changelog b/debian/changelog index 10e3380..4b0de5c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +curtail (1.3.0) focal; urgency=medium + + * Add option to preserve file attributes if possible. + * Update image libraries. + * Update French translation. + * Update Russian translation. Thank's to @prokoudine. + + -- Archisman Panigrahi Sun, 01 May 2022 16:55:00 +0200 + curtail (1.2.2) focal; urgency=medium * Add Turkish translation. Thank's to @05akalan57. diff --git a/meson.build b/meson.build index bc10310..293f179 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('curtail', - version: '1.2.2', + version: '1.3.0', meson_version: '>= 0.50.0', default_options: [ 'warning_level=2', ], diff --git a/src/window.py b/src/window.py index 17f3489..91a6d0b 100644 --- a/src/window.py +++ b/src/window.py @@ -323,7 +323,7 @@ def on_about(self, *args): dialog = Gtk.AboutDialog(transient_for=self) dialog.set_logo_icon_name('com.github.huluti.Curtail') dialog.set_program_name('Curtail') - dialog.set_version('1.2.2') + dialog.set_version('1.3.0') dialog.set_website('https://github.com/Huluti/Curtail') dialog.set_authors(['Hugo Posnic', 'Steven Teskey', 'Andrey Kozlovskiy', 'Balló György', 'olokelo', 'Archisman Panigrahi']) dialog.set_translator_credits(_("translator-credits"))