Bump version to 0.8.1

This commit is contained in:
Hugo Posnic 2020-04-02 18:22:39 +02:00
parent e1fa0cd15d
commit 4303356ab2
4 changed files with 13 additions and 2 deletions

View File

@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.
## [0.8.1] - 2020-04-02
### Fixed
- Fix compression of jpg files that produced 0b files.
## [0.8] - 2019-10-27
### Added
- Add an option to whether keep or not metadata of images.

View File

@ -33,6 +33,13 @@
<launchable type="desktop-id">com.github.huluti.ImCompressor.desktop</launchable>
<releases>
<release version="0.8.1" date="2020-04-02">
<description>
<ul>
<li>Fix compression of jpg files that produced 0b files</li>
</ul>
</description>
</release>
<release version="0.8" date="2019-10-27">
<description>
<ul>

View File

@ -1,5 +1,5 @@
project('imcompressor',
version: '0.8',
version: '0.8.1',
meson_version: '>= 0.50.0',
default_options: [ 'warning_level=2',
],

View File

@ -280,7 +280,7 @@ class ImCompressorWindow(Gtk.ApplicationWindow):
dialog = Gtk.AboutDialog(transient_for=self)
dialog.set_logo_icon_name('com.github.huluti.ImCompressor')
dialog.set_program_name('ImCompressor')
dialog.set_version('0.8')
dialog.set_version('0.8.1')
dialog.set_website('https://github.com/Huluti/ImCompressor')
dialog.set_authors(['Hugo Posnic'])
dialog.set_translator_credits(_("translator-credits"))