aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergio Martins <smartins@kde.org>2022-01-20 11:13:15 +0000
committerSergio Martins <smartins@kde.org>2022-01-20 11:13:15 +0000
commit6f3efcb612b206dcc5d40260df348dfb10202721 (patch)
tree827e8ff646e5d4298b72b3ddf2b99aee9c1fad3a
parent1acae0b38f42ecea014fc03dd25f377bd5c80ff5 (diff)
Bump to 1.12
-rw-r--r--CMakeLists.txt2
-rw-r--r--Changelog2
-rw-r--r--README.md4
-rw-r--r--dev-scripts/make_windows_package.py4
-rw-r--r--src/ClazyStandaloneMain.cpp2
5 files changed, 9 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f8459c54..76d9cb5b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,7 +19,7 @@ include(GNUInstallDirs)
# Version setup
set(CLAZY_VERSION_MAJOR "1")
-set(CLAZY_VERSION_MINOR "11")
+set(CLAZY_VERSION_MINOR "12")
set(CLAZY_VERSION_PATCH "0")
set(CLAZY_VERSION "${CLAZY_VERSION_MAJOR}.${CLAZY_VERSION_MINOR}.${CLAZY_VERSION_PATCH}")
set(CLAZY_PRINT_VERSION "${CLAZY_VERSION_MAJOR}.${CLAZY_VERSION_MINOR}")
diff --git a/Changelog b/Changelog
index c06fc940..573faedf 100644
--- a/Changelog
+++ b/Changelog
@@ -1,5 +1,7 @@
# Changelog
+* v1.12 (TBD)
+
* v1.11 (January 21st 2022)
- New Checks:
- use-arrow-operator-instead-of-data
diff --git a/README.md b/README.md
index 8d2cbef6..90f72992 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,6 @@
-clazy v1.11
+-*WARNING:* master is the development branch. Please use the v1.11 branch.
+
+clazy v1.12
===========
clazy is a compiler plugin which allows clang to understand Qt semantics. You get more than 50 Qt related compiler warnings, ranging from unneeded memory allocations to misusage of API, including fix-its for automatic refactoring.
diff --git a/dev-scripts/make_windows_package.py b/dev-scripts/make_windows_package.py
index f100086f..db80bff0 100644
--- a/dev-scripts/make_windows_package.py
+++ b/dev-scripts/make_windows_package.py
@@ -5,8 +5,8 @@ from shutil import copyfile
#--------------------------------------------------
# Change here:
-CLAZY_VERSION = '1.11'
-CANDIDATE_SHA1 = 'v1.11'
+CLAZY_VERSION = '1.12'
+CANDIDATE_SHA1 = 'v1.12'
PACKAGE_DIR = '/d/clazy-msvc-package/'
PACKAGE_DIR_WIN = 'd:\\clazy-msvc-package\\'
#--------------------------------------------------
diff --git a/src/ClazyStandaloneMain.cpp b/src/ClazyStandaloneMain.cpp
index fb2b66c9..cb266987 100644
--- a/src/ClazyStandaloneMain.cpp
+++ b/src/ClazyStandaloneMain.cpp
@@ -160,7 +160,7 @@ int main(int argc, const char **argv)
{
for (int i = 1; i < argc; i++) {
if (strcmp(argv[i], "--version") == 0) {
- std::cout << "clazy version 1.11\n";
+ std::cout << "clazy version 1.12\n";
break;
}
}