Skip to content

Commit

Permalink
Release version 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezdc committed Mar 26, 2021
1 parent 1495053 commit 5587726
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ set(WPE_API_VERSION "1.0")
# - 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 6 0 5)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 6 1 5)

project(libwpe VERSION "${PROJECT_VERSION}")

Expand Down
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
=======================
1.10.0 - March 26, 2021
=======================

- This release does not contain changes over the 1.9.91 development release.

=======================
1.9.91 - March 15, 2021
=======================
Expand Down
4 changes: 2 additions & 2 deletions include/wpe/libwpe-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#define LIBWPE_VERSION_H

#define WPE_MAJOR_VERSION 1
#define WPE_MINOR_VERSION 9
#define WPE_MICRO_VERSION 91
#define WPE_MINOR_VERSION 10
#define WPE_MICRO_VERSION 0

#endif /* !LIBWPE_VERSION_H */
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ api_version = '1.0'
# - 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, use [C, R+1, A].
soversion = [6, 0, 5]
soversion = [6, 1, 5]

# Mangle [C, R, A] into an actual usable *soversion*.
soversion_major = soversion[0] - soversion[2] # Current-Age
Expand Down

0 comments on commit 5587726

Please sign in to comment.