Skip to content

Commit

Permalink
latest docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ericniebler committed Jun 30, 2017
1 parent cb42d1c commit dd7fd44
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -65,6 +65,10 @@ The code is known to work on the following compilers:
Release Notes:
--------------

* **0.3.0** June 30, 2017
- Input views may now be move-only (from @CaseyCarter)
- Input `any_view`s are now *much* more efficicient (from @CaseyCarter)
- Better support for systems lacking a working `<thread>` header (from @CaseyCarter)
* **0.2.6** June 21, 2017
- Experimental coroutines with `ranges::experimental::generator` (from @CaseyCarter)
- `ranges::optional` now behaves like `std::optional` (from @CaseyCarter)
Expand Down
4 changes: 2 additions & 2 deletions Version.cmake
@@ -1,5 +1,5 @@
# To update the range-v3 version, from a *CLEAN* working directory, update the version numbers below.
# 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 2)
set(RANGE_V3_PATCHLEVEL 6)
set(RANGE_V3_MINOR 3)
set(RANGE_V3_PATCHLEVEL 0)
2 changes: 1 addition & 1 deletion conanfile.py
Expand Up @@ -14,7 +14,7 @@

class Rangev3Conan(ConanFile):
name = "range-v3"
version = "0.2.6"
version = "0.3.0"
license = "Boost Software License - Version 1.0 - August 17th, 2003"
url = "https://github.com/ericniebler/range-v3"
description = """Experimental range library for C++11/14/17"""
Expand Down
2 changes: 1 addition & 1 deletion doc/gh-pages
Submodule gh-pages updated 391 files
4 changes: 2 additions & 2 deletions include/range/v3/version.hpp
Expand Up @@ -15,8 +15,8 @@
#define RANGES_V3_VERSION_HPP

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

#define RANGE_V3_VERSION (RANGE_V3_MAJOR * 10000 \
+ RANGE_V3_MINOR * 100 \
Expand Down
2 changes: 1 addition & 1 deletion test_package/conanfile.py
Expand Up @@ -21,7 +21,7 @@

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

def build(self):
Expand Down

0 comments on commit dd7fd44

Please sign in to comment.