Skip to content

Commit

Permalink
Preparing release 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Morwenn committed Apr 12, 2022
1 parent a1202b8 commit bcaa6b6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 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.12.1 LANGUAGES CXX)
project(cpp-sort VERSION 1.13.0 LANGUAGES CXX)

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

[![Latest Release](https://img.shields.io/badge/release-1.12.1-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.12.1)
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.12.1-blue.svg)](https://conan.io/center/cpp-sort?version=1.12.1)
[![Latest Release](https://img.shields.io/badge/release-1.13.0-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.13.0)
[![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)
[![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
Expand Up @@ -10,7 +10,7 @@

class CppSortConan(ConanFile):
name = "cpp-sort"
version = "1.12.1"
version = "1.13.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,6 +1,6 @@
![cpp-sort logo](images/cpp-sort-logo.svg)

Welcome to the **cpp-sort 1.12.1** documentation!
Welcome to the **cpp-sort 1.13.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 @@ -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.12.1):
And then install any version to your local cache as follows (here with version 1.13.0):

```sh
conan install cpp-sort/1.12.1
conan install cpp-sort/1.13.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
6 changes: 3 additions & 3 deletions include/cpp-sort/version.h
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2021 Morwenn
* Copyright (c) 2018-2022 Morwenn
* SPDX-License-Identifier: MIT
*/
#ifndef CPPSORT_VERSION_H_
Expand All @@ -8,7 +8,7 @@
// Semantic versioning macros

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

#endif // CPPSORT_VERSION_H_

0 comments on commit bcaa6b6

Please sign in to comment.