Skip to content

Commit 114200a

Browse files
committed
bump cmake minimum version to 3.10
1 parent 30cbfdc commit 114200a

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
2020
# IN THE SOFTWARE.
2121

22-
cmake_minimum_required(VERSION 3.2)
22+
cmake_minimum_required(VERSION 3.10)
2323

24-
project(args LANGUAGES CXX VERSION 6.4.6 DESCRIPTION "A flexible single-header C++11 argument parsing library that is designed to appear somewhat similar to Python's argparse" HOMEPAGE_URL "https://github.com/Taywee/args")
24+
project(args LANGUAGES CXX VERSION 6.4.7 DESCRIPTION "A flexible single-header C++11 argument parsing library that is designed to appear somewhat similar to Python's argparse" HOMEPAGE_URL "https://github.com/Taywee/args")
2525

2626
include(GNUInstallDirs)
2727

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "args"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 6.4.6
41+
PROJECT_NUMBER = 6.4.7
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

args.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
#ifndef ARGS_HXX
3434
#define ARGS_HXX
3535

36-
#define ARGS_VERSION "6.4.6"
36+
#define ARGS_VERSION "6.4.7"
3737
#define ARGS_VERSION_MAJOR 6
3838
#define ARGS_VERSION_MINOR 4
39-
#define ARGS_VERSION_PATCH 6
39+
#define ARGS_VERSION_PATCH 7
4040

4141
#include <algorithm>
4242
#include <iterator>

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
class ArgsConan(ConanFile):
44
name = "args"
5-
version = "6.4.6"
5+
version = "6.4.7"
66
url = "https://github.com/Taywee/args"
77
description = "A simple header-only C++ argument parser library."
88
license = "MIT"

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('args.hxx', ['cpp'],
2-
version: '6.4.6',
2+
version: '6.4.7',
33
default_options: 'cpp_std=c++11',
44
license: 'MIT'
55
)

0 commit comments

Comments
 (0)