Skip to content

Commit

Permalink
Bump version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Huluti committed Jul 18, 2023
1 parent b9b82f5 commit bfb8139
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [2.0.0] - 2023-07-18
- Port to GTK 4 and libadwaita.
- Add a color picker tool.
- Add Croatian, Spanish, Dutch and Turkish translations.

## [1.8.1] - 2020-04-25
- Drop libnotify in favor of Gio.notification.
- Add it and de translations.
Expand Down
10 changes: 10 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,15 @@
<launchable type="desktop-id">com.github.huluti.Coulr.desktop</launchable>

<releases>
<release version="2.0.0" date="2023-07-18">
<description>
<ul>
<li>Port to GTK 4 and libadwaita</li>
<li>Add a color picker tool</li>
<li>Add Croatian, Spanish, Dutch and Turkish translations</li>
</ul>
</description>
</release>
<release version="1.8.1" date="2020-04-25">
<description>
<ul>
Expand All @@ -47,3 +56,4 @@
</release>
</releases>
</component>

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.1',
version: '2.0.0',
meson_version: '>= 0.50.0',
default_options: [ 'warning_level=2',
],
Expand Down
3 changes: 2 additions & 1 deletion src/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def about_dialog(self, action, info):
"""About dialog"""
about_dialog = Adw.AboutWindow()
about_dialog.set_application_name(self.app_name)
about_dialog.set_version("1.8.1")
about_dialog.set_version("2.0.0")
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 Expand Up @@ -370,3 +370,4 @@ def random_rgb():
"""
return (randint(0, 255), randint(0, 255), randint(0, 255))


0 comments on commit bfb8139

Please sign in to comment.