Commit 9e247b1a0c463b4cda7a57073d3fb7e13118b6a7

Authored by Henry Schreiner
Committed by GitHub
1 parent 030f9d67

fix: single header file pragma missing (#620)

.appveyor.yml
1   -version: 2.0.0.{build}
  1 +version: 2.0.1.{build}
2 2  
3 3 branches:
4 4 only:
... ...
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 6 ## Version 2.0: Simplification
2 7  
3 8 This version focuses on cleaning up deprecated functionality, and some minor
... ...
CLI11.hpp.in
... ... @@ -31,6 +31,8 @@
31 31 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32 32 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 33  
  34 +#pragma once
  35 +
34 36 // Standard combined includes:
35 37 {public_includes}
36 38  
... ...
include/CLI/Version.hpp
... ... @@ -10,7 +10,7 @@
10 10  
11 11 #define CLI11_VERSION_MAJOR 2
12 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 16 // [CLI11:version_hpp:end]
... ...