Skip to content

Commit 7355155

Browse files
committed
0.3.7
1 parent e9ca2c8 commit 7355155

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ The code is known to work on the following compilers:
6767
Release Notes:
6868
--------------
6969

70+
* **0.3.7** Sept 19, 2018
71+
- Improved support for clang-cl (thanks to @CaseyCarter).
72+
- Fix for `any_view<T, category::sized | category::input>` (see #869).
73+
- Fix `iter_move` of a `ranges::reverse_iterator` (see #888).
74+
- Fix `move_sentinel` comparisons (see #889).
75+
- Avoid ambiguity created by `boost::advance` and `std::advance` (see #893).
7076
* **0.3.6** May 15, 2018
7177
- NEW: `view::exclusive_scan` (thanks to GitHub user @mitsutaka-takeda).
7278
- All views get non-`const` overloads of `.empty()` and `.size()` (see [ericniebler/stl2\#793](https://github.com/ericniebler/stl2/issues/793)).

Version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# This makefile will generate a new version.hpp, *AMEND THE MOST RECENT COMMIT*, and git-tag the commit.
33
set(RANGE_V3_MAJOR 0)
44
set(RANGE_V3_MINOR 3)
5-
set(RANGE_V3_PATCHLEVEL 6)
5+
set(RANGE_V3_PATCHLEVEL 7)

include/range/v3/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#define RANGE_V3_MAJOR 0
1818
#define RANGE_V3_MINOR 3
19-
#define RANGE_V3_PATCHLEVEL 6
19+
#define RANGE_V3_PATCHLEVEL 7
2020

2121
#define RANGE_V3_VERSION (RANGE_V3_MAJOR * 10000 \
2222
+ RANGE_V3_MINOR * 100 \

0 commit comments

Comments
 (0)