diff options
-rw-r--r-- | NEWS | 15 | ||||
-rw-r--r-- | configure.ac | 3 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 18 insertions, 2 deletions
@@ -1,3 +1,18 @@ +1.14.2 (stable): + +The tarball for 1.14.2 has been created with 'meson dist'. +If you build with Autotools from the tarball, please read the relevant +part of the README file. + +Build: +* Meson build: Fix versioning on macOS + (Kjell Ahlstedt, Tom Schoonjans) +* Require cairo >= 1.12.0 + Not a new requirement, but now it's specified in configure.ac and + meson.build, so a failure to meet it is noticed earlier when building + (Kjell Ahlstedt) + + 1.14.0 (stable): The tarball for 1.14.0 has been created with 'meson dist'. diff --git a/configure.ac b/configure.ac index 3cf75d7..5d2af99 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,8 @@ ## 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.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=cairomm], +AC_INIT([cairomm], [1.14.2], + [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 c724042..ba158d6 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ # This file is part of cairomm. project('cairomm', 'cpp', - version: '1.14.0', + version: '1.14.2', license: 'LGPLv2+', default_options: [ 'cpp_std=c++11', |