Bumped version to v2.8

This commit is contained in:
Pranav Srinivas Kumar 2022-09-20 21:20:55 -07:00
parent c91fc8477a
commit 4f10f378c5
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.12.4)
project(argparse
VERSION 2.7.0
VERSION 2.8.0
DESCRIPTION "A single header argument parser for C++17"
HOMEPAGE_URL "https://github.com/p-ranav/argparse"
LANGUAGES CXX

View File

@ -7,7 +7,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-2.7-blue.svg?cacheSeconds=2592000" alt="version"/>
<img src="https://img.shields.io/badge/version-2.8-blue.svg?cacheSeconds=2592000" alt="version"/>
</p>
## Highlights

View File

@ -2,7 +2,7 @@ from conans import ConanFile
class ArgparseConan(ConanFile):
name = "argparse"
version = "2.7"
version = "2.8"
exports_sources = "include/argparse.hpp"
no_copy_source = True