Skip to content

Commit 0f7d46e

Browse files
committed
Preparing release 1.17.2
1 parent 95bb059 commit 0f7d46e

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.8.0)
55

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

8-
project(cpp-sort VERSION 1.17.1 LANGUAGES CXX)
8+
project(cpp-sort VERSION 1.17.2 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-1.17.1-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.17.1)
4-
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.17.1-blue.svg)](https://conan.io/center/recipes/cpp-sort?version=1.17.1)
3+
[![Latest Release](https://img.shields.io/badge/release-1.17.2-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.17.2)
4+
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.17.2-blue.svg)](https://conan.io/center/recipes/cpp-sort?version=1.17.2)
55
[![Code Coverage](https://codecov.io/gh/Morwenn/cpp-sort/branch/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.1"
19+
version = "1.17.2"
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.1** documentation!
3+
Welcome to the **cpp-sort 1.17.2** 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
@@ -63,10 +63,10 @@ Note: when `CPPSORT_ENABLE_AUDITS` is `ON`, assertions in the library are enable
6363
conan search cpp-sort --remote=conancenter
6464
```
6565

66-
And then install any version to your local cache as follows (here with version 1.17.1):
66+
And then install any version to your local cache as follows (here with version 1.17.2):
6767

6868
```sh
69-
conan install --requires=cpp-sort/1.17.1
69+
conan install --requires=cpp-sort/1.17.2
7070
```
7171

7272
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_
@@ -9,6 +9,6 @@
99

1010
#define CPPSORT_VERSION_MAJOR 1
1111
#define CPPSORT_VERSION_MINOR 17
12-
#define CPPSORT_VERSION_PATCH 1
12+
#define CPPSORT_VERSION_PATCH 2
1313

1414
#endif // CPPSORT_VERSION_H_

0 commit comments

Comments
 (0)