From c1bdff47e7537ba8f991730db539a2dc4e30eb7f Mon Sep 17 00:00:00 2001 From: Marcus Behrendt Date: Wed, 21 Dec 2022 21:56:10 +0100 Subject: [PATCH 1/2] chore(app-data): Update changelog --- data/com.github.marhkb.Pods.metainfo.xml.in.in | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/data/com.github.marhkb.Pods.metainfo.xml.in.in b/data/com.github.marhkb.Pods.metainfo.xml.in.in index c2e259180..b7de57994 100644 --- a/data/com.github.marhkb.Pods.metainfo.xml.in.in +++ b/data/com.github.marhkb.Pods.metainfo.xml.in.in @@ -42,6 +42,20 @@ https://github.com/marhkb/pods/issues + + +

The third 1.0 release candidate of Pods contains the following changes:

+

    +
  • The application icon and symbolic icons have been improved, thanks to @daudix-UFO
  • +
  • Actions, such as creating a container, can now be repeated initially if they fail.
  • +
  • Fixed a bug that prevented the label displaying the id of an image from being striked through if the image was being deleted.
  • +
  • Repository tags are now selectable within the image details page.
  • +
  • Translations have been updated. Thanks to all who contributed.
  • +
  • Internal code improvements have been made, such as reducing dependencies and enabling LTO for release builds.
  • +
+

+
+

This is a hotfix release that prevents the application from crashing when disconnected from Podman.

From 87268e6f7f60b82887b7708a3a59955689ce57e9 Mon Sep 17 00:00:00 2001 From: Marcus Behrendt Date: Wed, 21 Dec 2022 21:57:54 +0100 Subject: [PATCH 2/2] chore: Bump version to 1.0.0-rc.3 --- Cargo.lock | 2 +- Cargo.toml | 2 +- meson.build | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 47ba00090..8d2e2321c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1630,7 +1630,7 @@ dependencies = [ [[package]] name = "pods" -version = "1.0.0-rc.2" +version = "1.0.0-rc.3" dependencies = [ "anyhow", "ashpd", diff --git a/Cargo.toml b/Cargo.toml index e2819e0e5..e341d1748 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pods" -version = "1.0.0-rc.2" +version = "1.0.0-rc.3" authors = ["Marcus Behrendt "] edition = "2021" diff --git a/meson.build b/meson.build index 803e2c053..851f5eaf5 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'pods', 'rust', - version: '1.0.0-rc.2', + version: '1.0.0-rc.3', meson_version: '>= 0.59', license: 'GPL3+', )