diff --git a/data/io.github.amit9838.mousam.appdata.xml.in b/data/io.github.amit9838.mousam.appdata.xml.in
index 9f08f07..b7dab37 100644
--- a/data/io.github.amit9838.mousam.appdata.xml.in
+++ b/data/io.github.amit9838.mousam.appdata.xml.in
@@ -58,6 +58,40 @@
+
+
+ What's New
+
+ - Mousam is now more usable on low resolution displays.
+ - Added keyboard shortcuts for various like refresh, open settings etc. Thanks to @francobattista.
+ - "Now" label in hourly forecast is automatically scrolled in the view. Thanks to @georgescutelnicu
+ - Now Mousam uses gnome runtime-version 46.
+
+ Bug fixes
+
+ - Tomorrow's forecast is fixed now where it was showing offset forecast.
+ - Some UI improvements in search city dialog.
+ - Fixed error where sun rotation was inaccurate sometimes.
+
+ Translation
+
+ - App is now available in various native languages :
+ - Dutch by @Vistaus
+ - French + German by @Yellowbery01
+ - Brazilian Portuguese by @Luiz-C-Lima
+ - Polish by @LukaszH77
+ - Ukrainian by @SimonOriginal
+ - Hindi by @Scrambled777
+
+ Thanks to
+
+ - @LukaszH77 for adding context related translation changes
+ - @yakushabb for adding translation related patches
+ - And thanks to the folks who reported issues on GitHub.
+ - Thanks you for using Mousam.
+
+
+
What's New
diff --git a/meson.build b/meson.build
index 86674bd..85dbe28 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('mousam',
- version: '1.1.0',
+ version: '1.2.0',
meson_version: '>= 0.61.0',
default_options: [ 'warning_level=2', 'werror=false', ],
)
diff --git a/src/windowAbout.py b/src/windowAbout.py
index 3584af9..1b51bc4 100644
--- a/src/windowAbout.py
+++ b/src/windowAbout.py
@@ -7,7 +7,7 @@ def AboutWindow(parent,*args):
dialog = Adw.AboutWindow.new()
dialog.set_application_name("Mousam")
dialog.set_application_icon("io.github.amit9838.mousam")
- dialog.set_version("1.1.0")
+ dialog.set_version("1.2.0")
dialog.set_developer_name("Amit Chaudhary")
dialog.set_license_type(Gtk.License(Gtk.License.GPL_3_0))
dialog.set_comments(_("Beautiful and light weight weather app build using Gtk and Python"))