diff --git a/CMakeLists.txt b/CMakeLists.txt index ee0cc95..bd15501 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,7 @@ endif() project(args CXX) set(PROJECT_DESCRIPTION "A simple, small, flexible, single-header C++11 argument parsing library. that is designed to appear somewhat similar to Python's argparse.") set(PROJECT_HOMEPAGE_URL "https://github.com/Taywee/args") -set(PROJECT_VERSION 6.2.2) +set(PROJECT_VERSION 6.2.7) option(ARGS_BUILD_EXAMPLE "Build example" ON) option(ARGS_BUILD_UNITTESTS "Build unittests" ON) diff --git a/Doxyfile b/Doxyfile index 74c187b..1190a7c 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "args" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 6.2.0 +PROJECT_NUMBER = 6.2.7 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/args.hxx b/args.hxx index 74a345a..1f8705e 100644 --- a/args.hxx +++ b/args.hxx @@ -33,10 +33,10 @@ #ifndef ARGS_HXX #define ARGS_HXX -#define ARGS_VERSION "6.2.6" +#define ARGS_VERSION "6.2.7" #define ARGS_VERSION_MAJOR 6 #define ARGS_VERSION_MINOR 2 -#define ARGS_VERSION_PATCH 6 +#define ARGS_VERSION_PATCH 7 #include #include diff --git a/conanfile.py b/conanfile.py index 79b6ea0..7ac5978 100644 --- a/conanfile.py +++ b/conanfile.py @@ -2,7 +2,7 @@ class ArgsConan(ConanFile): name = "args" - version = "6.2.0" + version = "6.2.7" url = "https://github.com/Taywee/args" description = "A simple header-only C++ argument parser library." license = "MIT" diff --git a/meson.build b/meson.build index a388acd..2607f47 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('args.hxx', ['cpp'], - version: '6.2.2', + version: '6.2.7', default_options: 'cpp_std=c++11', license: 'MIT' )