diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2021-05-20 15:55:23 +0200 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2021-05-20 15:55:23 +0200 |
commit | 77a0bac11cc16c66d5292bb2546c1dca3525c918 (patch) | |
tree | 151b7c16bcd182667a05bb254926087e87c7c3df | |
parent | 7bfe45c0a063214f855b765906be6db574668db9 (diff) |
1.14.31.14.3
-rwxr-xr-x[-rw-r--r--] | NEWS | 14 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 16 insertions, 2 deletions
@@ -1,3 +1,17 @@ +1.14.3 (stable): + +Build: +* cairommconfig.h.*: Don't dllimport on MinGW + (Chun-wei Fan) Merge reqest !15 + (Chun-wei Fan) Issue gtkmm#90 (Lukas K.) +* Meson build: Make it possible to use cairomm as a subproject + (Kjell Ahlstedt) +* Meson build: No implicit_include_directories + (Kjell Ahlstedt) +* MSVC build: exception.h: Export Cairo::logic_error selectively + (Chun-wei Fan) Merge request !18 + + 1.14.2 (stable): The tarball for 1.14.2 has been created with 'meson dist'. diff --git a/configure.ac b/configure.ac index 5d2af99..64e31e1 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.14.2], +AC_INIT([cairomm], [1.14.3], [https://gitlab.freedesktop.org/cairo/cairomm/-/issues], [cairomm], [http://www.cairographics.org/cairomm/]) AC_PREREQ([2.62]) diff --git a/meson.build b/meson.build index eda3f91..8e132de 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ # This file is part of cairomm. project('cairomm', 'cpp', - version: '1.14.2', + version: '1.14.3', license: 'LGPLv2+', default_options: [ 'cpp_std=c++11', |