diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-09-30 15:30:04 +0200 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-09-30 15:30:04 +0200 |
commit | a087e75f6738fc9e0815e647153f5f04cc37d3a4 (patch) | |
tree | 7becf2ab9646c0f4eea9e91cbfde948e8dcd350f | |
parent | 6dce6ffa5d745f02a28e843e35ab804ed36ad903 (diff) |
1.14.21.14.2
-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', |