From a94a9183185069eaa9f501bff68a4edfacc93257 Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Mon, 13 Mar 2017 09:02:49 -0700 Subject: [PATCH] 0.1.1 --- README.md | 6 ++++++ Version.cmake | 2 +- include/range/v3/version.hpp | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a42466471d..54181dcff9 100644 --- a/README.md +++ b/README.md @@ -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! ----------- diff --git a/Version.cmake b/Version.cmake index 6fc7a8eb57..08b7233058 100644 --- a/Version.cmake +++ b/Version.cmake @@ -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) diff --git a/include/range/v3/version.hpp b/include/range/v3/version.hpp index 3a8308d294..f4b321af2b 100644 --- a/include/range/v3/version.hpp +++ b/include/range/v3/version.hpp @@ -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 \