Skip to content

Commit

Permalink
fix: single header file pragma missing (#620)
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii authored Jul 15, 2021
1 parent 030f9d6 commit 9e247b1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.0.0.{build}
version: 2.0.1.{build}

branches:
only:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### Version 2.0.1: Single header fix

The single header file was missing the include guard. #620


## Version 2.0: Simplification

This version focuses on cleaning up deprecated functionality, and some minor
Expand Down
2 changes: 2 additions & 0 deletions CLI11.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#pragma once

// Standard combined includes:
{public_includes}

Expand Down
4 changes: 2 additions & 2 deletions include/CLI/Version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#define CLI11_VERSION_MAJOR 2
#define CLI11_VERSION_MINOR 0
#define CLI11_VERSION_PATCH 0
#define CLI11_VERSION "2.0.0"
#define CLI11_VERSION_PATCH 1
#define CLI11_VERSION "2.0.1"

// [CLI11:version_hpp:end]

0 comments on commit 9e247b1

Please sign in to comment.