diff options
-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', |