diff --git a/Cargo.lock b/Cargo.lock
index 621f47d..88a1fda 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1299,7 +1299,7 @@ dependencies = [
[[package]]
name = "lemoa"
-version = "0.1.0"
+version = "0.2.0"
dependencies = [
"chrono",
"html2pango",
diff --git a/Cargo.toml b/Cargo.toml
index ea6b997..1b6f346 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "lemoa"
-version = "0.1.0"
+version = "0.2.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 27e65fa..5af2e5d 100644
--- a/data/io.github.lemmygtk.lemoa.metainfo.xml.in
+++ b/data/io.github.lemmygtk.lemoa.metainfo.xml.in
@@ -26,6 +26,18 @@
https://github.com/lemmygtk/lemoa/issues
+
+
+
+ - Support for writing private messages
+ - Inbox: support for private messages
+ - Display the publish date for posts, comments and replies
+ - Validate instance urls for more user convenience
+ - List federated instances in instance selector
+ - Remove 'View' buttons in favor of clicking the title
+
+
+
diff --git a/flake.lock b/flake.lock
deleted file mode 100644
index 15b10ad..0000000
--- a/flake.lock
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "nodes": {
- "flake-utils": {
- "inputs": {
- "systems": "systems"
- },
- "locked": {
- "lastModified": 1687709756,
- "narHash": "sha256-Y5wKlQSkgEK2weWdOu4J3riRd+kV/VCgHsqLNTTWQ/0=",
- "owner": "numtide",
- "repo": "flake-utils",
- "rev": "dbabf0ca0c0c4bce6ea5eaf65af5cb694d2082c7",
- "type": "github"
- },
- "original": {
- "owner": "numtide",
- "repo": "flake-utils",
- "type": "github"
- }
- },
- "nixpkgs": {
- "locked": {
- "lastModified": 1687701825,
- "narHash": "sha256-aMC9hqsf+4tJL7aJWSdEUurW2TsjxtDcJBwM9Y4FIYM=",
- "owner": "NixOS",
- "repo": "nixpkgs",
- "rev": "07059ee2fa34f1598758839b9af87eae7f7ae6ea",
- "type": "github"
- },
- "original": {
- "id": "nixpkgs",
- "type": "indirect"
- }
- },
- "root": {
- "inputs": {
- "flake-utils": "flake-utils",
- "nixpkgs": "nixpkgs"
- }
- },
- "systems": {
- "locked": {
- "lastModified": 1681028828,
- "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
- "owner": "nix-systems",
- "repo": "default",
- "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
- "type": "github"
- },
- "original": {
- "owner": "nix-systems",
- "repo": "default",
- "type": "github"
- }
- }
- },
- "root": "root",
- "version": 7
-}
diff --git a/flake.nix b/flake.nix
index 583acf9..32b2519 100644
--- a/flake.nix
+++ b/flake.nix
@@ -12,7 +12,7 @@
packages = rec {
lemoa = pkgs.rustPlatform.buildRustPackage {
pname = "lemoa";
- version = "0.1.0";
+ version = "0.2.0";
src = ./.;
buildInputs = with pkgs; [
openssl
diff --git a/meson.build b/meson.build
index 3313174..9ad878e 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
project(
'lemoa',
'rust',
- version: '0.1.0',
+ version: '0.2.0',
meson_version: '>= 0.59',
license: 'GPL-3.0',
)
diff --git a/src/config.rs b/src/config.rs
index 2641486..f50915f 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.1.0";
+pub const VERSION: &str = "0.2.0";