Skip to content

Commit

Permalink
Bump version number to 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Morwenn committed Aug 19, 2019
1 parent 5703a82 commit 06bc258
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions 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)
Expand Down
4 changes: 2 additions & 2 deletions conanfile.py
Expand Up @@ -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 <morwenn29@hotmail.fr>"
description = "Additional sorting algorithms & related tools"
Expand Down
2 changes: 1 addition & 1 deletion include/cpp-sort/version.h
Expand Up @@ -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_

0 comments on commit 06bc258

Please sign in to comment.