Skip to content

Commit b0de0fa

Browse files
committed
Preparing release 1.13.1
1 parent 3d86572 commit b0de0fa

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
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-2021 Morwenn
1+
# Copyright (c) 2015-2022 Morwenn
22
# SPDX-License-Identifier: MIT
33

44
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.13.0 LANGUAGES CXX)
8+
project(cpp-sort VERSION 1.13.1 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.13.0-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.13.0)
4-
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.13.0-blue.svg)](https://conan.io/center/cpp-sort?version=1.13.0)
3+
[![Latest Release](https://img.shields.io/badge/release-1.13.1-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.13.1)
4+
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.13.1-blue.svg)](https://conan.io/center/cpp-sort?version=1.13.1)
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: 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-2021 Morwenn
3+
# Copyright (c) 2018-2022 Morwenn
44
# SPDX-License-Identifier: MIT
55

66
from conans import CMake, ConanFile
@@ -10,7 +10,7 @@
1010

1111
class CppSortConan(ConanFile):
1212
name = "cpp-sort"
13-
version = "1.13.0"
13+
version = "1.13.1"
1414
description = "Additional sorting algorithms & related tools"
1515
topics = "conan", "cpp-sort", "sorting", "algorithms"
1616
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.13.0** documentation!
3+
Welcome to the **cpp-sort 1.13.1** documentation!
44

55
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.
66

docs/Tooling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ Some of those options also exist without the `CPPSORT_` prefix, but they are dep
5656
conan search cpp-sort --remote=conan-center
5757
```
5858

59-
And then install any version to your local cache as follows (here with version 1.13.0):
59+
And then install any version to your local cache as follows (here with version 1.13.1):
6060

6161
```sh
62-
conan install cpp-sort/1.13.0
62+
conan install cpp-sort/1.13.1
6363
```
6464

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

1010
#define CPPSORT_VERSION_MAJOR 1
1111
#define CPPSORT_VERSION_MINOR 13
12-
#define CPPSORT_VERSION_PATCH 0
12+
#define CPPSORT_VERSION_PATCH 1
1313

1414
#endif // CPPSORT_VERSION_H_

0 commit comments

Comments
 (0)