From c86eb7bac2b8a77b858045e3a7bb07b8398a30d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Sun, 10 Dec 2023 18:14:54 +0100 Subject: [PATCH] Increase major version due to the API change The API should be backward compatible but the overzoom extension should rather be promoted with a major version number change. --- .appveyor.yml | 2 +- README.md | 4 ++-- pbfplugin.pro | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 3bc72e3..9475600 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -version: 2.7.{build} +version: 3.0.{build} configuration: - Release diff --git a/README.md b/README.md index 1fbaecb..4828ab2 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,8 @@ reader.read(&img); you will get 1024x1024px tiles with a pixel ratio of 2 (= HiDPI tiles). ### Overzoom -Since version 2.7 tile overzoom is supported. If you set *format* to -`$zoom;$overzoom`: +Since version 3 of the plugin tile overzoom is supported. If you set *format* +to `$zoom;$overzoom`: ```cpp QPixmap pm; QByteArray fmt(QByteArray::number(zoom) + ';' + QByteArray::number(overzoom)); diff --git a/pbfplugin.pro b/pbfplugin.pro index 25708b7..03e2073 100644 --- a/pbfplugin.pro +++ b/pbfplugin.pro @@ -2,7 +2,7 @@ TARGET = pbf TEMPLATE = lib CONFIG += plugin QT += gui -VERSION = 2.7 +VERSION = 3.0 PROTOS = protobuf/vector_tile.proto include(protobuf/vector_tile.pri)