Commit 9e247b1a0c463b4cda7a57073d3fb7e13118b6a7
Committed by
GitHub
1 parent
030f9d67
fix: single header file pragma missing (#620)
Showing
4 changed files
with
10 additions
and
3 deletions
.appveyor.yml
CHANGELOG.md
| 1 | +### Version 2.0.1: Single header fix | ||
| 2 | + | ||
| 3 | +The single header file was missing the include guard. #620 | ||
| 4 | + | ||
| 5 | + | ||
| 1 | ## Version 2.0: Simplification | 6 | ## Version 2.0: Simplification |
| 2 | 7 | ||
| 3 | This version focuses on cleaning up deprecated functionality, and some minor | 8 | This version focuses on cleaning up deprecated functionality, and some minor |
CLI11.hpp.in
| @@ -31,6 +31,8 @@ | @@ -31,6 +31,8 @@ | ||
| 31 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 31 | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 32 | // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 32 | // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 33 | 33 | ||
| 34 | +#pragma once | ||
| 35 | + | ||
| 34 | // Standard combined includes: | 36 | // Standard combined includes: |
| 35 | {public_includes} | 37 | {public_includes} |
| 36 | 38 |
include/CLI/Version.hpp
| @@ -10,7 +10,7 @@ | @@ -10,7 +10,7 @@ | ||
| 10 | 10 | ||
| 11 | #define CLI11_VERSION_MAJOR 2 | 11 | #define CLI11_VERSION_MAJOR 2 |
| 12 | #define CLI11_VERSION_MINOR 0 | 12 | #define CLI11_VERSION_MINOR 0 |
| 13 | -#define CLI11_VERSION_PATCH 0 | ||
| 14 | -#define CLI11_VERSION "2.0.0" | 13 | +#define CLI11_VERSION_PATCH 1 |
| 14 | +#define CLI11_VERSION "2.0.1" | ||
| 15 | 15 | ||
| 16 | // [CLI11:version_hpp:end] | 16 | // [CLI11:version_hpp:end] |