From 379ebb6b16aa59fb937e2c2d477c4b46a228af7b Mon Sep 17 00:00:00 2001 From: Pranav Srinivas Kumar Date: Sun, 5 Nov 2023 18:20:10 -0600 Subject: [PATCH] Bumped version to v3.0 ahead of release --- CMakeLists.txt | 2 +- README.md | 2 +- conanfile.py | 2 +- xmake.lua | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 38bf1bf..0f9f183 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ else() endif() project(argparse - VERSION 2.9.0 + VERSION 3.0.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 403995b..2fbb746 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ license - version + version

## Highlights diff --git a/conanfile.py b/conanfile.py index 743e5f3..79d407a 100644 --- a/conanfile.py +++ b/conanfile.py @@ -2,7 +2,7 @@ from conans import ConanFile class ArgparseConan(ConanFile): name = "argparse" - version = "2.9" + version = "3.0" exports_sources = "include/argparse.hpp" no_copy_source = True diff --git a/xmake.lua b/xmake.lua index cc33c03..c95bda3 100644 --- a/xmake.lua +++ b/xmake.lua @@ -1,7 +1,7 @@ set_xmakever("2.8.2") set_project("argparse") -set_version("2.9.0", { build = "%Y%m%d%H%M" }) +set_version("3.0.0", { build = "%Y%m%d%H%M" }) option("enable_module") option("enable_std_import", { defines = "ARGPARSE_MODULE_USE_STD_MODULE" })