Skip to content

Commit

Permalink
Bumped to v3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
p-ranav committed Jul 17, 2024
1 parent a2b4d27 commit 68fd027
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ else()
endif()

project(argparse
VERSION 3.0.0
VERSION 3.1.0
DESCRIPTION "A single header argument parser for C++17"
HOMEPAGE_URL "https://github.com/p-ranav/argparse"
LANGUAGES CXX
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<a href="https://github.com/p-ranav/argparse/blob/master/LICENSE">
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="license"/>
</a>
<img src="https://img.shields.io/badge/version-3.0-blue.svg?cacheSeconds=2592000" alt="version"/>
<img src="https://img.shields.io/badge/version-3.1-blue.svg?cacheSeconds=2592000" alt="version"/>
</p>

## Highlights
Expand Down Expand Up @@ -1399,8 +1399,8 @@ Add an `http_archive` in WORKSPACE.bazel, for example
http_archive(
name = "argparse",
sha256 = "674e724c2702f0bfef1619161815257a407e1babce30d908327729fba6ce4124",
strip_prefix = "argparse-3.0",
url = "https://github.com/p-ranav/argparse/archive/refs/tags/v3.0.zip",
strip_prefix = "argparse-3.1",
url = "https://github.com/p-ranav/argparse/archive/refs/tags/v3.1.zip",
)
```

Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class ArgparseConan(ConanFile):
name = "argparse"
version = "3.0"
version = "3.1"
exports_sources = "include/argparse.hpp"
no_copy_source = True

Expand Down
2 changes: 1 addition & 1 deletion xmake.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
set_xmakever("2.8.2")
set_project("argparse")

set_version("3.0.0", { build = "%Y%m%d%H%M" })
set_version("3.1.0", { build = "%Y%m%d%H%M" })

option("enable_module")
option("enable_std_import", { defines = "ARGPARSE_MODULE_USE_STD_MODULE" })
Expand Down

0 comments on commit 68fd027

Please sign in to comment.