Skip to content

Commit

Permalink
Preparing release 1.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Morwenn committed Oct 8, 2022
1 parent 95c5149 commit e5f57ca
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.8.0)

list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)

project(cpp-sort VERSION 1.13.1 LANGUAGES CXX)
project(cpp-sort VERSION 1.13.2 LANGUAGES CXX)

include(CMakePackageConfigHelpers)
include(GNUInstallDirs)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![cpp-sort logo](docs/images/cpp-sort-logo.svg)

[![Latest Release](https://img.shields.io/badge/release-1.13.1-blue.svg)](/~https://github.com/Morwenn/cpp-sort/releases/tag/1.13.1)
[![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)
[![Latest Release](https://img.shields.io/badge/release-1.13.2-blue.svg)](/~https://github.com/Morwenn/cpp-sort/releases/tag/1.13.2)
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.13.2-blue.svg)](https://conan.io/center/cpp-sort?version=1.13.2)
[![Code Coverage](https://codecov.io/gh/Morwenn/cpp-sort/branch/develop/graph/badge.svg)](https://codecov.io/gh/Morwenn/cpp-sort)
[![Pitchfork Layout](https://img.shields.io/badge/standard-PFL-orange.svg)](/~https://github.com/vector-of-bool/pitchfork)

Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

class CppSortConan(ConanFile):
name = "cpp-sort"
version = "1.13.1"
version = "1.13.2"
description = "Additional sorting algorithms & related tools"
topics = "conan", "cpp-sort", "sorting", "algorithms"
url = "/~https://github.com/Morwenn/cpp-sort"
Expand Down
2 changes: 1 addition & 1 deletion docs/Home.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![cpp-sort logo](images/cpp-sort-logo.svg)

Welcome to the **cpp-sort 1.13.1** documentation!
Welcome to the **cpp-sort 1.13.2** documentation!

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.

Expand Down
4 changes: 2 additions & 2 deletions docs/Tooling.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ Some of those options also exist without the `CPPSORT_` prefix, but they are dep
conan search cpp-sort --remote=conan-center
```

And then install any version to your local cache as follows (here with version 1.13.1):
And then install any version to your local cache as follows (here with version 1.13.2):

```sh
conan install cpp-sort/1.13.1
conan install cpp-sort/1.13.2
```

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.
Expand Down
2 changes: 1 addition & 1 deletion include/cpp-sort/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

#define CPPSORT_VERSION_MAJOR 1
#define CPPSORT_VERSION_MINOR 13
#define CPPSORT_VERSION_PATCH 1
#define CPPSORT_VERSION_PATCH 2

#endif // CPPSORT_VERSION_H_

0 comments on commit e5f57ca

Please sign in to comment.