Skip to content

Commit 7b74733

Browse files
committed
Release 0.2.0
1 parent 2b386c2 commit 7b74733

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

autogen.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
[ -z "$EDITOR" ] && EDITOR=vim
3+
$EDITOR meson.build
4+
$EDITOR src/window.vala

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('deltachat-gnome', ['vala', 'c'],
2-
version: '0.1.0',
2+
version: '0.2.0',
33
meson_version: '>= 0.59.0',
44
)
55

src/window.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ namespace Dc {
553553
var about = new Adw.AboutDialog ();
554554
about.application_name = "Delta Chat";
555555
about.application_icon = "org.deltachat.Gnome";
556-
about.version = "0.1.0";
556+
about.version = "0.2.0";
557557
about.developer_name = "pancake";
558558
about.developers = { "pancake" };
559559
about.license_type = Gtk.License.GPL_3_0;

0 commit comments

Comments
 (0)