diff --git a/Cargo.lock b/Cargo.lock
index ac16e78..d6bb37b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1455,7 +1455,7 @@ dependencies = [
[[package]]
name = "lemoa"
-version = "0.2.0"
+version = "0.3.0"
dependencies = [
"chrono",
"html2pango",
diff --git a/Cargo.toml b/Cargo.toml
index 8ad5e10..8374a9a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "lemoa"
-version = "0.2.0"
+version = "0.3.0"
edition = "2021"
[dependencies]
diff --git a/data/io.github.lemmygtk.lemoa.metainfo.xml.in b/data/io.github.lemmygtk.lemoa.metainfo.xml.in
index 5af2e5d..4f8ddaf 100644
--- a/data/io.github.lemmygtk.lemoa.metainfo.xml.in
+++ b/data/io.github.lemmygtk.lemoa.metainfo.xml.in
@@ -26,6 +26,24 @@
https://github.com/lemmygtk/lemoa/issues
+
+
+
+ - Support for replying to comments
+ - New, more polished app icon
+ - Support for viewing comments by a user
+ - Support for viewing the next pages of a profile
+ - Show communities moderated by a person
+ - Initial support for multiple account profiles
+ - Support for comment nesting with a tree structure
+ - Possibility to search instances in public tab (#16)
+ - Support for bookmarking posts
+ - Support for saving/bookmarking comments
+ - Support for viewing saved posts and comments
+ - Add user agent for http requests
+
+
+
diff --git a/flake.nix b/flake.nix
index 32b2519..68e1614 100644
--- a/flake.nix
+++ b/flake.nix
@@ -12,7 +12,7 @@
packages = rec {
lemoa = pkgs.rustPlatform.buildRustPackage {
pname = "lemoa";
- version = "0.2.0";
+ version = "0.3.0";
src = ./.;
buildInputs = with pkgs; [
openssl
@@ -27,9 +27,6 @@
];
cargoLock = {
lockFile = ./Cargo.lock;
- outputHashes = {
- "lemmy_api_common-0.18.0" = "sha256-l4UNO5Obx73nOiVnl6dc+sw2tekDLn2ixTs1GwqdE8I=";
- };
};
meta = with pkgs.lib; {
description = "Native Gtk client for Lemmy";
diff --git a/meson.build b/meson.build
index 9ad878e..5c323b4 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
project(
'lemoa',
'rust',
- version: '0.2.0',
+ version: '0.3.0',
meson_version: '>= 0.59',
license: 'GPL-3.0',
)
diff --git a/src/config.rs b/src/config.rs
index f50915f..683f6c0 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -1,4 +1,4 @@
pub const NAME: &str = "lemoa";
pub const APP_ID: &str = "io.github.lemmygtk.lemoa";
pub const PKGDATADIR: &str = "/usr/local/share/lemoa";
-pub const VERSION: &str = "0.2.0";
+pub const VERSION: &str = "0.3.0";