Skip to content

Commit

Permalink
Draft 1.3.0 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanGriffiths committed Jul 1, 2019
1 parent 9304b05 commit bd06654
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)

set(MIR_VERSION_MAJOR 1)
set(MIR_VERSION_MINOR 2)
set(MIR_VERSION_MINOR 3)
set(MIR_VERSION_PATCH 0)

add_definitions(-DMIR_VERSION_MAJOR=${MIR_VERSION_MAJOR})
Expand Down
47 changes: 46 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,51 @@
mir (1.3.0) UNRELEASED; urgency=medium

* New upstream release 1.3.0

- ABI summary:
. mirclient ABI unchanged at 9
. miral ABI unchanged at 3
. mirserver ABI bumped to 49
. mircommon ABI unchanged at 7
. mirplatform ABI unchanged at 16
. mirprotobuf ABI unchanged at 3
. mirplatformgraphics ABI unchanged to 16
. mirclientplatform ABI unchanged at 5
. mirinputplatform ABI unchanged at 7
. mircore ABI unchanged at 1
. mircookie ABI unchanged at 2
- Enhancements:
. [Wayland] Rename zxdg_output_v1 -> zxdg_output_manager_v1
. [Wayland] Eagerly send buffer release events
. [Wayland] Eagerly execute work when on Wayland thread
. [MirAL] Surface depth layer support
. [MirAL] Application Zone support
. [MirAL] Explicit handling of Wayland extensions in MirAL and Mir
. [MirAL] Do not place parentless windows relative to existing windows
. [Wayland/mirtest] publish miral::TestWlcsDisplayServer and
miral::TestServer fixtures in mirtest-dev. (Fixes #878)
. [Wayland/generator] Force compile-time error if XML/generated classes
are updated to a new version without also updating the child classes
. [Wayland/generator] Add base objects for Wayland objects and globals
. [Wayland/generator] Add a constructor-from-parent for objects that can
be server-constructed
. [Examples] Implement Ctrl-Alt-T handling for miral-shell
- Bugs fixed:
. [Wayland] Better handle window role state changes. (Fixes #836)
. [Wayland] Fix INCLUDEDIR for the mirwayland.pc file. (Fixes #873)
. [Wayland] Process output update notifications on the correct thread.
(Fixes: #886)
. [MirAL] Allow unfocused windows to receive mouse down events
. [MirAL] Handle exceptions propagating from InternalClient code
. Add a package config file for mircommon and reference it mirwayland and
mirplatform. (Fixes: #868)
. [nested] Make sure we destroy eglImage before class gets destructed

-- Alan Griffiths <[email protected]> Mon, 1 Jul 2019 11:24:00 +0100

mir (1.2.0) UNRELEASED; urgency=medium

* New upstream release 1.1.2
* New upstream release 1.2.0

- ABI summary:
. mirclient ABI unchanged at 9
Expand Down
4 changes: 2 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Description: Display server for Ubuntu - RPC definitions

#TODO: Packaging infrastructure for better dependency generation,
# ala pkg-xorg's xviddriver:Provides and ABI detection.
Package: libmirserver48
Package: libmirserver49
Section: libs
Architecture: linux-any
Multi-Arch: same
Expand Down Expand Up @@ -161,7 +161,7 @@ Section: libdevel
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: libmirserver48 (= ${binary:Version}),
Depends: libmirserver49 (= ${binary:Version}),
libmirplatform-dev (= ${binary:Version}),
libmircommon-dev (= ${binary:Version}),
libglm-dev,
Expand Down
1 change: 0 additions & 1 deletion debian/libmirserver48.install

This file was deleted.

1 change: 1 addition & 0 deletions debian/libmirserver49.install
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
usr/lib/*/libmirserver.so.49
2 changes: 1 addition & 1 deletion src/server/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ install(DIRECTORY
${CMAKE_SOURCE_DIR}/include/server/mir DESTINATION "include/mirserver"
)

set(MIRSERVER_ABI 48) # Be sure to increment MIR_VERSION_MINOR at the same time
set(MIRSERVER_ABI 49) # Be sure to increment MIR_VERSION_MINOR at the same time
set(symbol_map ${CMAKE_CURRENT_SOURCE_DIR}/symbols.map)

set_target_properties(
Expand Down

0 comments on commit bd06654

Please sign in to comment.