Skip to content

Commit

Permalink
Release version 1.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezdc committed Jul 31, 2022
1 parent ed63f53 commit 5c0b59d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 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 7 0 6)
CALCULATE_LIBRARY_VERSIONS_FROM_LIBTOOL_TRIPLE(LIBWPE 7 1 6)

project(libwpe VERSION "${PROJECT_VERSION}")

Expand Down
7 changes: 7 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
======================
1.12.1 - July 31, 2022
======================

- Fix pasteboard to use the generic interface by default.
- Fix memory allocation to always abort execution on failure.

===========================
1.12.0 - September 30, 2021
===========================
Expand Down
2 changes: 1 addition & 1 deletion include/wpe/libwpe-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@

#define WPE_MAJOR_VERSION 1
#define WPE_MINOR_VERSION 12
#define WPE_MICRO_VERSION 0
#define WPE_MICRO_VERSION 1

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

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

0 comments on commit 5c0b59d

Please sign in to comment.