chore: prepare for v4.0

This commit is contained in:
Bnyro 2023-08-25 13:04:51 +02:00
parent cac731b41e
commit 2f1f7183c2
5 changed files with 26 additions and 5 deletions

2
Cargo.lock generated
View File

@ -1469,7 +1469,7 @@ dependencies = [
[[package]] [[package]]
name = "lemoa" name = "lemoa"
version = "0.3.0" version = "0.4.0"
dependencies = [ dependencies = [
"chrono", "chrono",
"html2pango", "html2pango",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "lemoa" name = "lemoa"
version = "0.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@ -26,7 +26,28 @@
<url type="bugtracker">https://github.com/lemmygtk/lemoa/issues</url> <url type="bugtracker">https://github.com/lemmygtk/lemoa/issues</url>
<content_rating type="oars-1.0" /> <content_rating type="oars-1.0" />
<releases> <releases>
<release version="0.3.0" date="2023-07-13"> <release version="0.4.0" date="2023-08-25">
<description>
<ul>
<li>Show preview of post thumbnail by @Bnyro</li>
<li>feat(posts): option to set the sort order by @Bnyro</li>
<li>feat(community): option to set the sort order of posts by @Bnyro</li>
<li>chore: update dependencies to latest versions by @Bnyro</li>
<li>feat: support for (un)blocking communities by @Bnyro</li>
<li>feat: support for blocking other users by @Bnyro</li>
<li>feat: add a site info dialog by @Bnyro</li>
<li>refactor: simplify the creation of menu actions by @Bnyro</li>
<li>feat: add important site info to its dialog by @Bnyro</li>
<li>feat(profile): show when the user has joined lemmy by @Bnyro</li>
<li>fix(community page): simplify sub, posts and comment count by @Bnyro</li>
<li>feat: search on enter in instance list () by @thebigG</li>
<li>feat: search community on enter by @Bnyro</li>
<li>Minor UI improvements at the instances page by @Bnyro</li>
<li>readme: add installation instructions for void linux by @Bnyro</li>
</ul>
</description>
</release>
<release version="0.3.0" date="2023-07-13">
<description> <description>
<ul> <ul>
<li>Support for replying to comments</li> <li>Support for replying to comments</li>

View File

@ -12,7 +12,7 @@
packages = rec { packages = rec {
lemoa = pkgs.rustPlatform.buildRustPackage { lemoa = pkgs.rustPlatform.buildRustPackage {
pname = "lemoa"; pname = "lemoa";
version = "0.3.0"; version = "0.4.0";
src = ./.; src = ./.;
buildInputs = with pkgs; [ buildInputs = with pkgs; [
openssl openssl

View File

@ -1,7 +1,7 @@
project( project(
'lemoa', 'lemoa',
'rust', 'rust',
version: '0.3.0', version: '0.4.0',
meson_version: '>= 0.59', meson_version: '>= 0.59',
license: 'GPL-3.0', license: 'GPL-3.0',
) )