Skip to content

Commit f4f0c96

Browse files
author
Taylor C. Richberger
committed
version bumps
1 parent 97ebda2 commit f4f0c96

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ endif()
3232
project(args CXX)
3333
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.")
3434
set(PROJECT_HOMEPAGE_URL "https://github.com/Taywee/args")
35-
set(PROJECT_VERSION 6.2.2)
35+
set(PROJECT_VERSION 6.2.7)
3636

3737
option(ARGS_BUILD_EXAMPLE "Build example" ON)
3838
option(ARGS_BUILD_UNITTESTS "Build unittests" ON)

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.2.0
41+
PROJECT_NUMBER = 6.2.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.2.6"
36+
#define ARGS_VERSION "6.2.7"
3737
#define ARGS_VERSION_MAJOR 6
3838
#define ARGS_VERSION_MINOR 2
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.2.0"
5+
version = "6.2.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.2.2',
2+
version: '6.2.7',
33
default_options: 'cpp_std=c++11',
44
license: 'MIT'
55
)

0 commit comments

Comments
 (0)