summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2023-09-27 09:01:54 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2023-09-27 09:01:54 +0200
commit669e87a460bca3fa8d57cdaeac70bff183636354 (patch)
tree872e02fdeebdc84c498199bddf61caadb4bdc7ea
parent73bf52306b4887b4e6647707860acf0a125b36e3 (diff)
1.14.51.14.5
-rwxr-xr-xNEWS21
-rw-r--r--README.md11
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
4 files changed, 30 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 81cbe93..33def83 100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,24 @@
+1.14.5 (stable):
+
+Documentation:
+* Context: Fix some typos
+ (Daniel Boles) Merge request !26
+* Update Visual Studio build docs
+ (Chun-wei Fan) Merge request !27
+* Remove AUTHORS and MAINTAINERS; add info to README.md
+ (Kjell Ahlstedt) Issue gtkmm#140
+
+Meson build:
+* Detect if we build from a git subtree
+ (William Roy) Merge request gtkmm!72
+* Don't copy files with configure_file()
+ (Kjell Ahlstedt)
+* Fix the evaluation of is_git_build on Windows
+ (Kjell Ahlstedt) Issue gtkmm#131 (William Roy)
+* The boost-shared option defaults to true
+ (Kjell Ahlstedt)
+
+
1.14.4 (stable):
Build:
diff --git a/README.md b/README.md
index 4cf9be4..b423217 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,9 @@ This library provides a C++ interface to cairo.
# General information
+cairomm-1.0 and cairomm-1.16 are different parallel-installable ABIs.
+This file describes cairomm-1.0.
+
Web site
- https://www.cairographics.org/cairomm/
@@ -11,10 +14,10 @@ Download location
Reference documentation
- https://www.cairographics.org/documentation/cairomm/reference/
+ - https://cairo.pages.freedesktop.org/cairomm
-The reference documentation on the web describes the latest released version
-of cairomm, which is not ABI-compatible with the cairomm-1.0 ABI series.
-
+The reference documentation on the web describes a version of cairomm,
+which is not ABI-compatible with the cairomm-1.0 ABI series.
Tarballs contain reference documentation. In tarballs generated with Meson,
see the untracked/docs/reference/html directory.
@@ -46,7 +49,7 @@ configure.ac file.
## Building on Windows
-See [MSVC-Builds.md](MSVC_NMake/MSVC-Builds.md)
+See [MSVC-Builds](MSVC_NMake/MSVC-Builds.md)
## Building from a release tarball
diff --git a/configure.ac b/configure.ac
index 3ae4221..9c81f03 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.4],
+AC_INIT([cairomm], [1.14.5],
[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 c7a7ebf..e8b3bd5 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of cairomm.
project('cairomm', 'cpp',
- version: '1.14.4',
+ version: '1.14.5',
license: 'LGPLv2+',
default_options: [
'cpp_std=c++11',