bump release to 4.1.0

This commit is contained in:
Bilal Elmoussaoui 2022-04-19 03:43:31 +02:00
parent 7b06e09f20
commit f4a279c050
4 changed files with 24 additions and 7 deletions

6
Cargo.lock generated
View file

@ -240,7 +240,7 @@ dependencies = [
[[package]] [[package]]
name = "authenticator" name = "authenticator"
version = "0.1.0" version = "4.1.0"
dependencies = [ dependencies = [
"aes-gcm", "aes-gcm",
"anyhow", "anyhow",
@ -1796,9 +1796,9 @@ dependencies = [
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.123" version = "0.2.124"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb691a747a7ab48abc15c5b42066eaafde10dc427e3b6ee2a1cf43db04c763bd" checksum = "21a41fed9d98f27ab1c6d161da622a4fa35e8a54a8adc24bbf3ddd0ef70b0e50"
[[package]] [[package]]
name = "libloading" name = "libloading"

View file

@ -1,7 +1,7 @@
[package] [package]
edition = "2021" edition = "2021"
name = "authenticator" name = "authenticator"
version = "0.1.0" version = "4.1.0"
[dependencies] [dependencies]
adw = {package = "libadwaita", version = "0.1.0"} adw = {package = "libadwaita", version = "0.1.0"}

View file

@ -15,7 +15,8 @@
<li>QR code scanner using a camera or from a screenshot</li> <li>QR code scanner using a camera or from a screenshot</li>
<li>Lock the application with a password</li> <li>Lock the application with a password</li>
<li>Beautiful UI</li> <li>Beautiful UI</li>
<li>Backup/Restore from/into known applications like FreeOTP+, andOTP</li> <li>GNOME Shell search provider</li>
<li>Backup/Restore from/into known applications like FreeOTP+, andOTP, Aegis (encrypted / plain-text)</li>
</ul> </ul>
</description> </description>
<screenshots> <screenshots>
@ -46,6 +47,20 @@
<url type="donation">https://liberapay.com/bielmoussaoui</url> <url type="donation">https://liberapay.com/bielmoussaoui</url>
<content_rating type="oars-1.1" /> <content_rating type="oars-1.1" />
<releases> <releases>
<release version="4.1.0" date="2021-04-19">
<description>Encrypted backups are finally here!</description>
<ul>
<li>Port to GTK 4</li>
<li>Encrypted backup support</li>
<li>Use the camera portal for scanning QR codes</li>
<li>GNOME Shell search provider</li>
<li>Allow editing accounts provider</li>
<li>Better favicons detection</li>
<li>Refined user interface</li>
<li>Translations updates</li>
<li>Updated providers database</li>
</ul>
</release>
<release version="4.0.3" date="2021-03-26"> <release version="4.0.3" date="2021-03-26">
<description> <description>
<ul> <ul>
@ -199,9 +214,11 @@
<kudos> <kudos>
<!-- <!--
GNOME Software kudos: GNOME Software kudos:
https://gitlab.gnome.org/GNOME/gnome-software/blob/master/doc/kudos.md https://gitlab.gnome.org/GNOME/gnome-software/blob/main/doc/kudos.md
--> -->
<kudo>ModernToolkit</kudo> <kudo>ModernToolkit</kudo>
<kudo>SearchProvider</kudo>
<kudo>HighContrast</kudo>
<kudo>HiDpiIcon</kudo> <kudo>HiDpiIcon</kudo>
</kudos> </kudos>
<recommends> <recommends>

View file

@ -1,5 +1,5 @@
project('authenticator', 'rust', project('authenticator', 'rust',
version: '4.0.3', version: '4.1.0',
meson_version: '>= 0.59', meson_version: '>= 0.59',
license: 'GPL-3.0-or-later' license: 'GPL-3.0-or-later'
) )