From a409ef3dd1cc33a61dbc94929cb05573d103a271 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Bou=C3=A9?= Date: Thu, 27 Jan 2022 20:52:39 +0100 Subject: [PATCH] Update for 1.12.0-rc1 release (#279) --- CMakeLists.txt | 2 +- MIGRATION_GUIDE.txt | 7 +++++++ release.sh | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ac6e15d..3c45f770 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ endif () set (MAPCACHE_VERSION_MAJOR 1) -set (MAPCACHE_VERSION_MINOR 11) +set (MAPCACHE_VERSION_MINOR 12) set (MAPCACHE_VERSION_REVISION 0) if(NOT DEFINED CMAKE_INSTALL_LIBDIR) diff --git a/MIGRATION_GUIDE.txt b/MIGRATION_GUIDE.txt index 00d48624..9fc59818 100644 --- a/MIGRATION_GUIDE.txt +++ b/MIGRATION_GUIDE.txt @@ -1,3 +1,10 @@ +Migrating from Mapcache 1.10 to 1.12 +=================================== + +* No backward compatibility issue is expected. + See [MapCache 1.12 Changelog](https://mapserver.org/development/changelog/mapcache/changelog-1-12.html) + for a list of bug fixes and new features. + Migrating from Mapcache 1.8 to 1.10 =================================== diff --git a/release.sh b/release.sh index 002f9575..4b3758fa 100755 --- a/release.sh +++ b/release.sh @@ -40,7 +40,7 @@ else fi echo "git add CMakeLists.txt" -echo "git commit -m \"update for $ms_version release\"" +echo "git commit -m \"Update for $ms_version release\"" echo "git tag -a $tagname -m \"Create $ms_version tag\"" echo "git push origin branch-$ms_version_major-$ms_version_minor --tags" echo "git archive --format=tar.gz --prefix=mapcache-$ms_version/ $tagname >/tmp/mapcache-$ms_version.tar.gz"