Skip to content

Commit

Permalink
Preparing release 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Morwenn committed Aug 16, 2019
1 parent 08fb330 commit 5760b4d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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.4.0@morwenn/stable
- conan upload --all -r bintray cpp-sort/1.5.0@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.4.0 LANGUAGES CXX)
project(cpp-sort VERSION 1.5.0 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.4.0-blue.svg)](https://github.com/Morwenn/cpp-sort/releases)
[![Conan Package](https://img.shields.io/badge/conan-1.4.0-blue.svg)](https://bintray.com/morwenn/cpp-sort/cpp-sort%3Amorwenn)
[![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)
[![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
2 changes: 1 addition & 1 deletion conanfile.py
Expand Up @@ -3,7 +3,7 @@

class CppSortConan(ConanFile):
name = "cpp-sort"
version = "1.4.0"
version = "1.5.0"
license = "https://github.com/Morwenn/cpp-sort/blob/master/license.txt"
url = "https://github.com/Morwenn/cpp-sort"
author = "Morwenn <morwenn29@hotmail.fr>"
Expand Down
2 changes: 1 addition & 1 deletion include/cpp-sort/version.h
Expand Up @@ -27,7 +27,7 @@
// Semantic versioning macros

#define CPPSORT_VERSION_MAJOR 1
#define CPPSORT_VERSION_MINOR 4
#define CPPSORT_VERSION_MINOR 5
#define CPPSORT_VERSION_PATCH 0

#endif // CPPSORT_VERSION_H_

0 comments on commit 5760b4d

Please sign in to comment.