From 06bc258f27d54edc031315243c80569001e24e26 Mon Sep 17 00:00:00 2001 From: Morwenn Date: Mon, 19 Aug 2019 21:40:36 +0200 Subject: [PATCH] Bump version number to 1.5.1 --- .travis.yml | 2 +- CMakeLists.txt | 2 +- README.md | 4 ++-- conanfile.py | 4 ++-- include/cpp-sort/version.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0c3c760f..dc84d48c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -173,7 +173,7 @@ matrix: after_success: - conan remote add bintray https://api.bintray.com/conan/morwenn/cpp-sort - conan user -r bintray -p ${CONAN_PASSWORD} morwenn - - conan upload --all -r bintray cpp-sort/1.5.0@morwenn/stable + - conan upload --all -r bintray cpp-sort/1.5.1@morwenn/stable before_install: - if [[ $TRAVIS_OS_NAME = "linux" && $CXX = "clang++" ]]; then diff --git a/CMakeLists.txt b/CMakeLists.txt index ca2c3915..eaac076d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.8.0) list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) -project(cpp-sort VERSION 1.5.0 LANGUAGES CXX) +project(cpp-sort VERSION 1.5.1 LANGUAGES CXX) include(CMakePackageConfigHelpers) include(GNUInstallDirs) diff --git a/README.md b/README.md index 928d8223..2343f9da 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Latest Release](https://img.shields.io/badge/release-cpp--sort%2F1.5.0-blue.svg)](https://github.com/Morwenn/cpp-sort/releases) -[![Conan Package](https://img.shields.io/badge/conan-1.5.0-blue.svg)](https://bintray.com/morwenn/cpp-sort/cpp-sort%3Amorwenn) +[![Latest Release](https://img.shields.io/badge/release-cpp--sort%2F1.5.1-blue.svg)](https://github.com/Morwenn/cpp-sort/releases) +[![Conan Package](https://img.shields.io/badge/conan-1.5.1-blue.svg)](https://bintray.com/morwenn/cpp-sort/cpp-sort%3Amorwenn) [![Build Status](https://travis-ci.org/Morwenn/cpp-sort.svg?branch=master)](https://travis-ci.org/Morwenn/cpp-sort) [![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org) [![Code Coverage](https://codecov.io/gh/Morwenn/cpp-sort/branch/master/graph/badge.svg)](https://codecov.io/gh/Morwenn/cpp-sort) diff --git a/conanfile.py b/conanfile.py index 3a344c87..1bf9433f 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,8 +3,8 @@ class CppSortConan(ConanFile): name = "cpp-sort" - version = "1.5.0" - license = "https://github.com/Morwenn/cpp-sort/blob/master/license.txt" + version = "1.5.1" + license = "MIT" url = "https://github.com/Morwenn/cpp-sort" author = "Morwenn " description = "Additional sorting algorithms & related tools" diff --git a/include/cpp-sort/version.h b/include/cpp-sort/version.h index 2e04a7ec..ca45fd35 100644 --- a/include/cpp-sort/version.h +++ b/include/cpp-sort/version.h @@ -28,6 +28,6 @@ #define CPPSORT_VERSION_MAJOR 1 #define CPPSORT_VERSION_MINOR 5 -#define CPPSORT_VERSION_PATCH 0 +#define CPPSORT_VERSION_PATCH 1 #endif // CPPSORT_VERSION_H_