Skip to content

Commit

Permalink
Release version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezdc committed Dec 13, 2018
1 parent 705103d commit da487fa
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_policy(VERSION 3.0)
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
include(VersioningUtils)

SET_PROJECT_VERSION(1 0 0)
SET_PROJECT_VERSION(1 1 0)
set(WPE_API_VERSION "0.2")

# Before making a release, the LT_VERSION string should be modified.
Expand All @@ -14,7 +14,7 @@ set(WPE_API_VERSION "0.2")
# - If binary compatibility has been broken (eg removed or changed interfaces)
# change to C+1:0:0
# - If the interface is the same as the previous version, change to C:R+1:A
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 1 0 0)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 2 0 1)

project(libwpe VERSION "${PROJECT_VERSION}")

Expand Down
20 changes: 20 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
=========================
1.1.0 - December 13, 2018
=========================

- Support building libwpe on Windows.
- New API for observing and setting the view backend state.
- Added a new wpe_renderer_backend_egl_get_platform() function which can
be used to obtain a value which can be passed to eglGetPlatformDisplay()
and eglGetPlatformDisplayEXT().
- Marked old function names containing the "backend" word as deprecated.
The symbols are still available, but it is encouraged to use the new
versions, e.g. prefer wpe_get_major_version() instead of
wpe_backend_get_major_version().
- Marked function table struct parameters passed to some API functions
as "const".
- Fixed headers so including <wpe-egl.h> results in <wpe.h> being included
automatically in the correct order.
- Make instantiation of backends more robust by checking the validity of
interface pointers obtained from the backend.

=======================
1.0.0 - August 21, 2018
=======================
Expand Down

0 comments on commit da487fa

Please sign in to comment.