Skip to content

Commit 40185b0

Browse files
committed
Preparing release 2.0.0
1 parent c5dad5b commit 40185b0

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
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.11.0)
55

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

8-
project(cpp-sort VERSION 1.17.0 LANGUAGES CXX)
8+
project(cpp-sort VERSION 2.0.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,7 +1,7 @@
11
![cpp-sort logo](docs/images/cpp-sort-logo.svg)
22

3-
[![Latest Release](https://img.shields.io/badge/release-1.17.0-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.17.0)
4-
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.17.0-blue.svg)](https://conan.io/center/recipes/cpp-sort?version=1.17.0)
3+
[![Latest Release](https://img.shields.io/badge/release-2.0.0-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/2.0.0)
4+
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F2.0.0-blue.svg)](https://conan.io/center/recipes/cpp-sort?version=2.0.0)
55
[![Code Coverage](https://codecov.io/gh/Morwenn/cpp-sort/branch/2.x.y-develop/graph/badge.svg)](https://codecov.io/gh/Morwenn/cpp-sort)
66
[![Pitchfork Layout](https://img.shields.io/badge/standard-PFL-orange.svg)](https://github.com/vector-of-bool/pitchfork)
77

conanfile.py

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

1717
class CppSortConan(ConanFile):
1818
name = "cpp-sort"
19-
version = "1.17.0"
19+
version = "2.0.0"
2020
description = "Sorting algorithms & related tools"
2121
license = "MIT"
2222
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,6 +1,6 @@
11
![cpp-sort logo](images/cpp-sort-logo.svg)
22

3-
Welcome to the **cpp-sort 1.17.0** documentation!
3+
Welcome to the **cpp-sort 2.0.0** documentation!
44

55
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, as well as a few tutorials about writing 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.
66

docs/Tooling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ Note: when `CPPSORT_ENABLE_AUDITS` is `ON`, assertions in the library are enable
4545
conan search cpp-sort --remote=conancenter
4646
```
4747

48-
And then install any version to your local cache as follows (here with version 1.17.0):
48+
And then install any version to your local cache as follows (here with version 2.0.0):
4949

5050
```sh
51-
conan install --requires=cpp-sort/1.17.0
51+
conan install --requires=cpp-sort/2.0.0
5252
```
5353

5454
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 create your own package with the `conanfile.py` available in this repository.

include/cpp-sort/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
// Semantic versioning macros
99

10-
#define CPPSORT_VERSION_MAJOR 1
11-
#define CPPSORT_VERSION_MINOR 17
10+
#define CPPSORT_VERSION_MAJOR 2
11+
#define CPPSORT_VERSION_MINOR 0
1212
#define CPPSORT_VERSION_PATCH 0
1313

1414
#endif // CPPSORT_VERSION_H_

0 commit comments

Comments
 (0)