Skip to content

Commit

Permalink
0.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ericniebler committed Sep 20, 2018
1 parent e9ca2c8 commit 7355155
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -67,6 +67,12 @@ The code is known to work on the following compilers:
Release Notes:
--------------

* **0.3.7** Sept 19, 2018
- Improved support for clang-cl (thanks to @CaseyCarter).
- Fix for `any_view<T, category::sized | category::input>` (see #869).
- Fix `iter_move` of a `ranges::reverse_iterator` (see #888).
- Fix `move_sentinel` comparisons (see #889).
- Avoid ambiguity created by `boost::advance` and `std::advance` (see #893).
* **0.3.6** May 15, 2018
- NEW: `view::exclusive_scan` (thanks to GitHub user @mitsutaka-takeda).
- All views get non-`const` overloads of `.empty()` and `.size()` (see [ericniebler/stl2\#793](https://github.com/ericniebler/stl2/issues/793)).
Expand Down
2 changes: 1 addition & 1 deletion Version.cmake
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 3)
set(RANGE_V3_PATCHLEVEL 6)
set(RANGE_V3_PATCHLEVEL 7)
2 changes: 1 addition & 1 deletion include/range/v3/version.hpp
Expand Up @@ -16,7 +16,7 @@

#define RANGE_V3_MAJOR 0
#define RANGE_V3_MINOR 3
#define RANGE_V3_PATCHLEVEL 6
#define RANGE_V3_PATCHLEVEL 7

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

0 comments on commit 7355155

Please sign in to comment.