diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2023-09-27 09:24:37 +0200 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2023-09-27 09:24:37 +0200 |
commit | e0bad547705348657d09db4c9375833d8890cf54 (patch) | |
tree | e3dfb1b58047cf476393117177bad00a71ad5d67 | |
parent | 6d5c7b226f6d7857d8c46641447d56053234d4f7 (diff) |
1.18.01.18.0
-rwxr-xr-x | NEWS | 7 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
4 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,10 @@ +1.18.0 (stable): + +Meson build: +* The boost-shared option defaults to true + (Kjell Ahlstedt) + + 1.17.1 (unstable): * Add SaveGuard save/restore object @@ -14,6 +14,7 @@ Download location Reference documentation - https://www.cairographics.org/documentation/cairomm/reference/ + - https://cairo.pages.freedesktop.org/cairomm Tarballs contain reference documentation. In tarballs generated with Meson, see the untracked/docs/reference/html directory. diff --git a/configure.ac b/configure.ac index bbc153d..e781a3e 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.17.1], +AC_INIT([cairomm], [1.18.0], [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 b8c2191..9bb5cc9 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ # This file is part of cairomm. project('cairomm', 'cpp', - version: '1.17.1', + version: '1.18.0', license: 'LGPLv2+', default_options: [ 'cpp_std=c++17', |