Skip to content

Commit

Permalink
0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ericniebler committed Mar 13, 2017
1 parent f522f42 commit a94a918
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ The code is known to work on the following compilers:
- on Travis-CI: [![Travis Build Status](https://travis-ci.org/ericniebler/range-v3.svg?branch=master)](https://travis-ci.org/ericniebler/range-v3)
- on AppVeyor: [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/9mekkhw1wm22rum9/branch/master?svg=true)](https://ci.appveyor.com/project/CaseyCarter/range-v3)

Release Notes:
--------------

* **0.1.1** Small tweak to `Writable` concept to fix #537
* **0.1.0** March 8, 2017, Begin semantic versioning

Say Thanks!
-----------

Expand Down
2 changes: 1 addition & 1 deletion Version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# This makefile will generate a new version.hpp, *AMEND THE MOST RECENT COMMIT*, and git-tag the commit.
set(RANGE_V3_MAJOR 0)
set(RANGE_V3_MINOR 1)
set(RANGE_V3_PATCHLEVEL 0)
set(RANGE_V3_PATCHLEVEL 1)
2 changes: 1 addition & 1 deletion include/range/v3/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

#define RANGE_V3_MAJOR 0
#define RANGE_V3_MINOR 1
#define RANGE_V3_PATCHLEVEL 0
#define RANGE_V3_PATCHLEVEL 1

#define RANGE_V3_VERSION (RANGE_V3_MAJOR * 10000 \
+ RANGE_V3_MINOR * 100 \
Expand Down

0 comments on commit a94a918

Please sign in to comment.