Skip to content

Commit 623c490

Browse files
committed
Preparing release 1.10.0
1 parent 23d3872 commit 623c490

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.8.0)
55

66
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
77

8-
project(cpp-sort VERSION 1.9.0 LANGUAGES CXX)
8+
project(cpp-sort VERSION 1.10.0 LANGUAGES CXX)
99

1010
include(CMakePackageConfigHelpers)
1111
include(GNUInstallDirs)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[![Latest Release](https://img.shields.io/badge/release-1.9.0-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.9.0)
2-
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.9.0-blue.svg)](https://conan.io/center/cpp-sort?version=1.9.0)
1+
[![Latest Release](https://img.shields.io/badge/release-1.10.0-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.10.0)
2+
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.10.0-blue.svg)](https://conan.io/center/cpp-sort?version=1.10.0)
33
[![Code Coverage](https://codecov.io/gh/Morwenn/cpp-sort/branch/develop/graph/badge.svg)](https://codecov.io/gh/Morwenn/cpp-sort)
44

55
> *It would be nice if only one or two of the sorting methods would dominate all of the others,

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class CppSortConan(ConanFile):
1010
name = "cpp-sort"
11-
version = "1.9.0"
11+
version = "1.10.0"
1212
description = "Additional sorting algorithms & related tools"
1313
topics = "conan", "cpp-sort", "sorting", "algorithms"
1414
url = "https://github.com/Morwenn/cpp-sort"

docs/Home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Welcome to the **cpp-sort 1.9.0** documentation!
1+
Welcome to the **cpp-sort 1.10.0** documentation!
22

33
You probably read the introduction in the README, so I won't repeat it here. This wiki contains documentation about the library: basic documentation about the many sorting tools and how to use them, documentation about the additional utilities provided by the library and even some detailed tutorials if you ever want to write your own sorters or sorter adapters. This main page explains a few general things that didn't quite fit in other parts of the documentation.
44

docs/Tooling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ conan search cpp-sort --remote=conan-center
5454
And then install any version to your local cache as follows (here with version 1.9.0):
5555

5656
```sh
57-
conan install cpp-sort/1.9.0
57+
conan install cpp-sort/1.10.0
5858
```
5959

6060
The packages downloaded from conan-center are minimal and only contain the files required to use **cpp-sort** as a library: the headers, CMake files and licensing information. If you need anything else you have to build your own package with the `conanfile.py` available in this repository.

include/cpp-sort/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// Semantic versioning macros
99

1010
#define CPPSORT_VERSION_MAJOR 1
11-
#define CPPSORT_VERSION_MINOR 9
11+
#define CPPSORT_VERSION_MINOR 10
1212
#define CPPSORT_VERSION_PATCH 0
1313

1414
#endif // CPPSORT_VERSION_H_

0 commit comments

Comments
 (0)