From 27de7b2778669df36fd9b66acc235909a5bfd465 Mon Sep 17 00:00:00 2001 From: Alan Griffiths Date: Mon, 17 Jul 2023 12:20:20 +0100 Subject: [PATCH] Draft changelog --- debian/changelog | 37 +++++++++++++++++++++++++++++++++ debian/control | 4 ++-- debian/libmirplatform25.install | 1 - debian/libmirplatform26.install | 1 + src/CMakeLists.txt | 2 +- 5 files changed, 41 insertions(+), 4 deletions(-) delete mode 100644 debian/libmirplatform25.install create mode 100644 debian/libmirplatform26.install diff --git a/debian/changelog b/debian/changelog index b9f98944844..01f070383ee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,40 @@ +mir (2.14.0) UNRELEASED; urgency=medium + + [ Alan Griffiths ] + * New upstream release 2.14.0 + + - ABI summary: + . miral ABI unchanged at 5 + . mircommon ABI unchanged at 9 + . mircookie ABI unchanged at 2 + . mircore ABI unchanged at 2 + . miroil ABI unchanged at 3 + . mirplatform ABI bumped to 26 + . mirserver ABI unchanged at 58 + . mirwayland ABI unchanged at 3 + . mirplatformgraphics ABI unchanged at 20 + . mirinputplatform ABI unchanged at 8 + - Enhancements: + . [Wayland] Support screen lockers (`ext-session-lock-v1`) + . [Wayland] Support drag and drop + . [platforms] Consolidate RenderingPlatform implementations + . [platforms] aggregate multiple `Display`s into a combined configuration + . [platforms] Drop the dispmanx platform + . [platforms] Drop unused `last_frame_on` interface + . [Window management] "attached" windows can be "restored" by drag gesture + . [Xwayland] Ensure to call connection_is_allowed on xwayland sessions + (partial fix for #2830) + . Add support for cursor drag icons + - Bugs fixed: + . [platforms] Handle libinput device rejections better + . [platforms] Assume evdev platform is supported (Fixes: #2837) + . [platforms] Fix naming of outputs on Nvidia cards (Fixes: #2968) + . server/ShmBacking: Fix leak in `install_sigbus_handler` + . [Wayland] flush display before polling (Fixes #2902) + . [doc] ignore namespaces that we do not want exported (Fixes #2365) + + -- Alan Griffiths Tue, 17 Jul 2023 11:55:37 +0100 + mir (2.13.0) UNRELEASED; urgency=medium [ Alan Griffiths ] diff --git a/debian/control b/debian/control index 25711bb0c60..79043f6a17c 100644 --- a/debian/control +++ b/debian/control @@ -75,7 +75,7 @@ Description: Display server for Ubuntu - server library . Contains the shared library needed by server applications for Mir. -Package: libmirplatform25 +Package: libmirplatform26 Section: libs Architecture: linux-any Multi-Arch: same @@ -123,7 +123,7 @@ Section: libdevel Architecture: linux-any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} -Depends: libmirplatform25 (= ${binary:Version}), +Depends: libmirplatform26 (= ${binary:Version}), libmircommon-dev (= ${binary:Version}), libboost-program-options-dev, ${misc:Depends}, diff --git a/debian/libmirplatform25.install b/debian/libmirplatform25.install deleted file mode 100644 index 5943e04d2b8..00000000000 --- a/debian/libmirplatform25.install +++ /dev/null @@ -1 +0,0 @@ -usr/lib/*/libmirplatform.so.25 diff --git a/debian/libmirplatform26.install b/debian/libmirplatform26.install new file mode 100644 index 00000000000..b5b49cd0c74 --- /dev/null +++ b/debian/libmirplatform26.install @@ -0,0 +1 @@ +usr/lib/*/libmirplatform.so.26 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6f89843c14e..e22045d6f3a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,5 +1,5 @@ # We need MIRPLATFORM_ABI in both libmirplatform and the platform implementations. -set(MIRPLATFORM_ABI 25) +set(MIRPLATFORM_ABI 26) set(MIRAL_VERSION_MAJOR 3) set(MIRAL_VERSION_MINOR 9)