Skip to content

Commit

Permalink
Preparing release 1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Morwenn committed Dec 2, 2021
1 parent b5a159f commit 266707b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
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.11.0 LANGUAGES CXX)
project(cpp-sort VERSION 1.12.0 LANGUAGES CXX)

include(CMakePackageConfigHelpers)
include(GNUInstallDirs)
Expand Down
4 changes: 2 additions & 2 deletions README.md
@@ -1,5 +1,5 @@
[![Latest Release](https://img.shields.io/badge/release-1.11.0-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.11.0)
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.11.0-blue.svg)](https://conan.io/center/cpp-sort?version=1.11.0)
[![Latest Release](https://img.shields.io/badge/release-1.12.0-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.12.0)
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.12.0-blue.svg)](https://conan.io/center/cpp-sort?version=1.12.0)
[![Code Coverage](https://codecov.io/gh/Morwenn/cpp-sort/branch/develop/graph/badge.svg)](https://codecov.io/gh/Morwenn/cpp-sort)

> *It would be nice if only one or two of the sorting methods would dominate all of the others,
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Expand Up @@ -10,7 +10,7 @@

class CppSortConan(ConanFile):
name = "cpp-sort"
version = "1.11.0"
version = "1.12.0"
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
@@ -1,4 +1,4 @@
Welcome to the **cpp-sort 1.11.0** documentation!
Welcome to the **cpp-sort 1.12.0** 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
Expand Up @@ -51,10 +51,10 @@ The same options exist without the `CPPSORT_` prefix exist, but are deprecated.
conan search cpp-sort --remote=conan-center
```

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

```sh
conan install cpp-sort/1.11.0
conan install cpp-sort/1.12.0
```

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
Expand Up @@ -8,7 +8,7 @@
// Semantic versioning macros

#define CPPSORT_VERSION_MAJOR 1
#define CPPSORT_VERSION_MINOR 11
#define CPPSORT_VERSION_MINOR 12
#define CPPSORT_VERSION_PATCH 0

#endif // CPPSORT_VERSION_H_

0 comments on commit 266707b

Please sign in to comment.