diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-09-27 17:09:21 +0200 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-09-27 17:09:21 +0200 |
commit | 0b3f24d6e3063161d36fb4e4bd6ef4e848541b01 (patch) | |
tree | d2ee92922ce61e50ca26fe689fb4d986c8999fd8 | |
parent | 01c986b87a2cf371aa632293170ef125d656ad72 (diff) |
1.14.0
-rw-r--r-- | NEWS | 38 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 40 insertions, 2 deletions
@@ -1,3 +1,41 @@ +1.14.0 (stable): + +The tarball for 1.14.0 has been created with 'meson dist'. +If you build with Autotools from the tarball, please read the relevant +part of the README file. + +Cairo: +* Add Context::get_source_for_surface() + (Kjell Ahlstedt) Issue #5 (Ian Britten) + +Build: +* Fix the build with MinGW headers + (Kalev Lember) Bug #92112 +* enums.h: Guard the FT-specific include and the enum with an ifdef + (John Ralls) Bug #100894 +* Add NMake Makefiles + Remove Visual Studio 2013 projects + (Chun-wei Fan) Issue #17, merge request !3, !6, !11, !12 +* Add support for building with Meson + (Kjell Ahlstedt, Chun-wei Fan) Merge request !2, !9 +* Use __declspec(dllexport) when building cairomm on Visual Studio + Stop using gendef.exe by default + (Chun-wei Fan) Merge request !4 +* docs/reference/: Update for Doxygen >= 1.8.16 + (Kjell Ahlstedt) + +Tests: +* Update the source code + (Kjell Ahlstedt, Chun-wei Fan) Merge request !1 +* Don't include deprecated Boost header files + Fix tests in Autotools builds + (Kjell Ahlstedt) + +Documentation: +* README: Update with instructions for building cairomm + (Kjell Ahlstedt) + + 1.13.1 (unstable): * Added RecordingSurface, wrapping cairo_recording_surface. diff --git a/configure.ac b/configure.ac index cf93a84..142c766 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ ## You should have received a copy of the GNU Lesser General Public License ## along with this library. If not, see <http://www.gnu.org/licenses/>. -AC_INIT([cairomm], [1.13.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=cairomm], +AC_INIT([cairomm], [1.14.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=cairomm], [cairomm], [http://www.cairographics.org/cairomm/]) AC_PREREQ([2.62]) diff --git a/meson.build b/meson.build index 29f81ce..399a70c 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ # This file is part of cairomm. project('cairomm', 'cpp', - version: '1.13.1', + version: '1.14.0', license: 'LGPLv2+', default_options: [ 'cpp_std=c++11', |