Skip to content

Commit

Permalink
Preparing release 1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Morwenn committed Aug 7, 2023
1 parent e2a8f68 commit a10a6fc
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 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.14.0 LANGUAGES CXX)
project(cpp-sort VERSION 1.15.0 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.14.0-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.14.0)
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.14.0-blue.svg)](https://conan.io/center/cpp-sort?version=1.14.0)
[![Latest Release](https://img.shields.io/badge/release-1.15.0-blue.svg)](https://github.com/Morwenn/cpp-sort/releases/tag/1.15.0)
[![Conan Package](https://img.shields.io/badge/conan-cpp--sort%2F1.15.0-blue.svg)](https://conan.io/center/cpp-sort?version=1.15.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
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2018-2022 Morwenn
# Copyright (c) 2018-2023 Morwenn
# SPDX-License-Identifier: MIT

import os.path
Expand All @@ -16,7 +16,7 @@

class CppSortConan(ConanFile):
name = "cpp-sort"
version = "1.14.0"
version = "1.15.0"
description = "Sorting algorithms & related tools"
license = "MIT"
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.14.0** documentation!
Welcome to the **cpp-sort 1.15.0** documentation!

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.

Expand Down
4 changes: 2 additions & 2 deletions docs/Tooling.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ Note: when `CPPSORT_ENABLE_AUDITS` is `ON`, assertions in the library are enable
conan search cpp-sort --remote=conan-center
```

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

```sh
conan install cpp-sort/1.14.0
conan install cpp-sort/1.15.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
4 changes: 2 additions & 2 deletions include/cpp-sort/version.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2022 Morwenn
* Copyright (c) 2018-2023 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 14
#define CPPSORT_VERSION_MINOR 15
#define CPPSORT_VERSION_PATCH 0

#endif // CPPSORT_VERSION_H_
4 changes: 2 additions & 2 deletions tools/release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ List of actions to perform when releasing a new cpp-sort version.

- [ ] Update the documentation.
- [ ] Update the releases notes.
- [ ] Udate `NOTICE.txt` and `README.md` when stealing code.
- [ ] Keep track of the things that will be changed in 2.0.0.
- [ ] Update `NOTICE.txt` and `README.md` when stealing code.
- [ ] Keep track of the things that will change in 2.0.0.

### Before the release

Expand Down

0 comments on commit a10a6fc

Please sign in to comment.