Skip to content

Commit

Permalink
release 24.08 for jammy (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
Perfect5th committed Aug 6, 2024
1 parent cfd72bf commit 04fed8d
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 2 deletions.
11 changes: 11 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
landscape-client (24.08-0landscape0) jammy; urgency=medium

* feat: added flag to skip sending a registration request
* fix(snap): reduce computer title retry delay
* fix(snap): retry setting the computer title
* fix: remove system exit in landscape-sysinfo.wrapper
* fix: allow for oracular version of pycurl error string (LP: #2068050)
* fix: add non-filtered interfaces to the API response (LP: #2052834)

-- Mitch Burton <mitch.burton@canonical.com> Tue, 06 Aug 2024 11:13:10 -0700

landscape-client (24.04-0landscape0) jammy; urgency=medium

* Improvements:
Expand Down
2 changes: 2 additions & 0 deletions debian/tests/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Tests: smoke
Restrictions: allow-stderr, needs-sudo, superficial
11 changes: 11 additions & 0 deletions debian/tests/smoke
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/sh

set -ex

landscape-config --help | grep --silent is-registered
# --is-registered expected to fail, as this is a fresh system and will
# not be registered yet.
is_registered=0
sudo landscape-config --is-registered || is_registered=$?
[ "$is_registered" -eq 5 ]
landscape-client --help | grep --silent version
2 changes: 1 addition & 1 deletion landscape/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DEBIAN_REVISION = "-0landscape0"
UPSTREAM_VERSION = "24.04"
UPSTREAM_VERSION = "24.08"
VERSION = f"{UPSTREAM_VERSION}{DEBIAN_REVISION}"

# The minimum server API version that all Landscape servers are known to speak
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: landscape-client
base: core22
version: '24.04'
version: '24.08'
icon: snap/gui/landscape-logo-256.png
website: https://ubuntu.com/landscape
summary: Client for the Canonical systems management product Landscape
Expand Down

0 comments on commit 04fed8d

Please sign in to comment.