Skip to content

Commit 8975be8

Browse files
authored
Merge pull request #800 from marhkb/build/v2.0.3
Build/v2.0.3
2 parents be83822 + 39faeef commit 8975be8

File tree

6 files changed

+18
-11
lines changed

6 files changed

+18
-11
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pods"
3-
version = "2.0.2"
3+
version = "2.0.3"
44
authors = ["Marcus Behrendt <marcus.behrendt.86@gmail.com>"]
55
edition = "2021"
66

build-aux/com.github.marhkb.Pods.Devel.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"id": "com.github.marhkb.Pods.Devel",
33
"runtime": "org.gnome.Platform",
4-
"runtime-version": "45",
4+
"runtime-version": "47",
55
"sdk": "org.gnome.Sdk",
66
"sdk-extensions": [
77
"org.freedesktop.Sdk.Extension.rust-stable",
8-
"org.freedesktop.Sdk.Extension.llvm16"
8+
"org.freedesktop.Sdk.Extension.llvm18"
99
],
1010
"command": "pods",
1111
"finish-args": [
@@ -21,7 +21,7 @@
2121
"--filesystem=xdg-run/podman:ro"
2222
],
2323
"build-options": {
24-
"append-path": "/usr/lib/sdk/rust-stable/bin:/usr/lib/sdk/llvm16/bin",
24+
"append-path": "/usr/lib/sdk/rust-stable/bin:/usr/lib/sdk/llvm18/bin",
2525
"env": {
2626
"CARGO_REGISTRIES_CRATES_IO_PROTOCOL": "sparse",
2727
"CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER": "clang",

data/com.github.marhkb.Pods.metainfo.xml.in.in

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@
4242
<url type="bugtracker">https://github.com/marhkb/pods/issues</url>
4343
<content_rating type="oars-1.1"/>
4444
<releases>
45+
<release version="2.0.3" date="2024-09-20">
46+
<description translatable="no">
47+
<p>This release fixes validation issues in appstream and updates the runtime to v47.</p>
48+
</description>
49+
</release>
4550
<release version="2.0.2" date="2024-09-20">
4651
<description translatable="no">
4752
<p>This release updates the project dependencies to stable versions.</p>
@@ -254,8 +259,8 @@
254259
<p>The ninth beta of Pods in an important step towards the stable first version. It contains the following changes:</p>
255260
<ul>
256261
<li>It is now possible to have a terminal in a container.</li>
257-
<li>As one works with the terminal and views text in the form of logs or inspection data, the theme selector has been reintroduced. This is provided by <strong>libpanel</strong>, which should simplify maintenance.</li>
258-
<li>The dialog for renaming a container is now based on <strong>AdwMessageDialog</strong>.</li>
262+
<li>As one works with the terminal and views text in the form of logs or inspection data, the theme selector has been reintroduced. This is provided by <em>libpanel</em>, which should simplify maintenance.</li>
263+
<li>The dialog for renaming a container is now based on <em>AdwMessageDialog</em>.</li>
259264
<li>The style of the container series was tweaked in many ways.</li>
260265
<li>Some minor internal code improvements have landed.</li>
261266
<li>Dependencies and translations have been updated.</li>
@@ -266,7 +271,7 @@
266271
<description translatable="no">
267272
<p>The eight beta release of Pods 1.0.0 includes the following changes:</p>
268273
<ul>
269-
<li>Pods now uses the <strong>libpanel</strong> library to display a status bar. Thus, notifications and the name of the Podman connection are always visible.</li>
274+
<li>Pods now uses the <em>libpanel</em> library to display a status bar. Thus, notifications and the name of the Podman connection are always visible.</li>
270275
<li>When creating a new connection, there is now a hint on how to enable the Podman UNIX socket and a small example on how to use the Podman root instance.</li>
271276
<li>The history of an image can now be inspected.</li>
272277
<li>The design of the port bindings in the container details page has been revised.</li>
@@ -392,7 +397,9 @@
392397
<kudo>ModernToolkit</kudo>
393398
<kudo>HiDpiIcon</kudo>
394399
</kudos>
395-
<developer_name>Marcus Behrendt</developer_name>
400+
<developer id="com.github.marhkb">
401+
<name>Marcus Behrendt</name>
402+
</developer>
396403
<update_contact>marcus.behrendt.86@gmail.com</update_contact>
397404
<translation type="gettext">@gettext-package@</translation>
398405
<launchable type="desktop-id">@app-id@.desktop</launchable>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'pods',
33
'rust',
4-
version: '2.0.2',
4+
version: '2.0.3',
55
meson_version: '>= 0.59',
66
license: 'GPL3+',
77
)

src/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ test (
7878
],
7979
env: [
8080
'CARGO_HOME=@0@'.format(cargo_home),
81-
'PATH=/app/bin:/usr/bin:/usr/lib/sdk/llvm16/bin:/usr/lib/sdk/rust-stable/bin',
81+
'PATH=/app/bin:/usr/bin:/usr/lib/sdk/llvm18/bin:/usr/lib/sdk/rust-stable/bin',
8282
],
8383
timeout: 300, # Give cargo more time
8484
)

0 commit comments

Comments
 (0)