Skip to content

Commit 8a67fc4

Browse files
committed
Preparing release 2.1.0
1 parent 40a6e27 commit 8a67fc4

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Copyright (c) 2015-2025 Morwenn
1+
# Copyright (c) 2015-2026 Morwenn
22
# SPDX-License-Identifier: MIT
33

44
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 2.0.0 LANGUAGES CXX)
8+
project(cpp-sort VERSION 2.1.0 LANGUAGES CXX)
99

1010
include(CMakePackageConfigHelpers)
1111
include(cpp-sort-utils)

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-2.0.0-blue.svg)](https://codeberg.org/Morwenn/cpp-sort/releases/tag/v2.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)
3+
[![Latest Release](https://img.shields.io/badge/release-2.1.0-blue.svg)](https://codeberg.org/Morwenn/cpp-sort/releases/tag/v2.1.0)
4+
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F2.1.0-blue.svg)](https://conan.io/center/recipes/cpp-sort?version=2.1.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# Copyright (c) 2018-2025 Morwenn
3+
# Copyright (c) 2018-2026 Morwenn
44
# SPDX-License-Identifier: MIT
55

66
import os.path
@@ -16,7 +16,7 @@
1616

1717
class CppSortConan(ConanFile):
1818
name = "cpp-sort"
19-
version = "2.0.0"
19+
version = "2.1.0"
2020
description = "Sorting algorithms & related tools"
2121
license = "MIT"
2222
url = "https://codeberg.org/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 2.0.0** documentation!
3+
Welcome to the **cpp-sort 2.1.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 2.0.0):
48+
And then install any version to your local cache as follows (here with version 2.1.0):
4949

5050
```sh
51-
conan install --requires=cpp-sort/2.0.0
51+
conan install --requires=cpp-sort/2.1.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
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018-2025 Morwenn
2+
* Copyright (c) 2018-2026 Morwenn
33
* SPDX-License-Identifier: MIT
44
*/
55
#ifndef CPPSORT_VERSION_H_
@@ -8,7 +8,7 @@
88
// Semantic versioning macros
99

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

1414
#endif // CPPSORT_VERSION_H_

0 commit comments

Comments
 (0)