From 327e16c61ba4e6df4891dfb0f223dde003b80dd1 Mon Sep 17 00:00:00 2001 From: Pranav Srinivas Kumar Date: Sun, 18 Sep 2022 07:14:36 -0700 Subject: [PATCH] Bumped to version v2.7 --- CMakeLists.txt | 2 +- README.md | 2 +- conanfile.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 958c25c..254ab08 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.12.4) project(argparse - VERSION 2.6.0 + VERSION 2.7.0 DESCRIPTION "A single header argument parser for C++17" HOMEPAGE_URL "https://github.com/p-ranav/argparse" LANGUAGES CXX diff --git a/README.md b/README.md index d38aee0..5fbb18a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ license - version + version

## Highlights diff --git a/conanfile.py b/conanfile.py index 1aa76fe..e4dfeb3 100644 --- a/conanfile.py +++ b/conanfile.py @@ -2,7 +2,7 @@ from conans import ConanFile class ArgparseConan(ConanFile): name = "argparse" - version = "2.6" + version = "2.7" exports_sources = "include/argparse.hpp" no_copy_source = True