Skip to content

Commit

Permalink
Bump version to 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Posnic committed Apr 25, 2020
1 parent 080c24d commit 8c52a1c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## [1.8.1] - 2020-04-25
- Drop libnotify in favor of Gio.notification.
- Add it and de translations.

## [1.8] - 2020-03-19
- Adopt meson and use flatpak over snap.
- Reintroduce translations (with en and fr for now).
Expand Down
8 changes: 8 additions & 0 deletions data/com.github.huluti.Coulr.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@
<launchable type="desktop-id">com.github.huluti.Coulr.desktop</launchable>

<releases>
<release version="1.8.1" date="2020-04-25">
<description>
<ul>
<li>Drop libnotify in favor of Gio.notification</li>
<li>Add it and de translations</li>
</ul>
</description>
</release>
<release version="1.8" date="2020-03-19">
<description>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('coulr',
version: '1.8',
version: '1.8.1',
meson_version: '>= 0.50.0',
default_options: [ 'warning_level=2',
],
Expand Down
2 changes: 1 addition & 1 deletion src/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def about_dialog(self, event):
"""About dialog"""
about_dialog = Gtk.AboutDialog(self)
about_dialog.set_program_name(self.app_name)
about_dialog.set_version("1.8")
about_dialog.set_version("1.8.1")
about_dialog.set_copyright("Hugo Posnic")
about_dialog.set_comments(_("Enjoy colors and feel happy!"))
about_dialog.set_website("https://github.com/Huluti/{}"
Expand Down

0 comments on commit 8c52a1c

Please sign in to comment.