Skip to content

Commit dd7fd44

Browse files
committed
latest docs
1 parent cb42d1c commit dd7fd44

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ The code is known to work on the following compilers:
6565
Release Notes:
6666
--------------
6767

68+
* **0.3.0** June 30, 2017
69+
- Input views may now be move-only (from @CaseyCarter)
70+
- Input `any_view`s are now *much* more efficicient (from @CaseyCarter)
71+
- Better support for systems lacking a working `<thread>` header (from @CaseyCarter)
6872
* **0.2.6** June 21, 2017
6973
- Experimental coroutines with `ranges::experimental::generator` (from @CaseyCarter)
7074
- `ranges::optional` now behaves like `std::optional` (from @CaseyCarter)

Version.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# To update the range-v3 version, from a *CLEAN* working directory, update the version numbers below.
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)
4-
set(RANGE_V3_MINOR 2)
5-
set(RANGE_V3_PATCHLEVEL 6)
4+
set(RANGE_V3_MINOR 3)
5+
set(RANGE_V3_PATCHLEVEL 0)

conanfile.py

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

1515
class Rangev3Conan(ConanFile):
1616
name = "range-v3"
17-
version = "0.2.6"
17+
version = "0.3.0"
1818
license = "Boost Software License - Version 1.0 - August 17th, 2003"
1919
url = "https://github.com/ericniebler/range-v3"
2020
description = """Experimental range library for C++11/14/17"""

doc/gh-pages

Submodule gh-pages updated 391 files

include/range/v3/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
#define RANGES_V3_VERSION_HPP
1616

1717
#define RANGE_V3_MAJOR 0
18-
#define RANGE_V3_MINOR 2
19-
#define RANGE_V3_PATCHLEVEL 6
18+
#define RANGE_V3_MINOR 3
19+
#define RANGE_V3_PATCHLEVEL 0
2020

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

test_package/conanfile.py

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

2222
class Rangev3TestConan(ConanFile):
2323
settings = "os", "compiler", "build_type", "arch"
24-
requires = "range-v3/0.2.6@%s/%s" % (username, channel)
24+
requires = "range-v3/0.3.0@%s/%s" % (username, channel)
2525
generators = "cmake"
2626

2727
def build(self):

0 commit comments

Comments
 (0)