Skip to content

Commit f63671c

Browse files
committed
Release 2.0.0
1 parent 1ef3d42 commit f63671c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[![Latest Release](https://img.shields.io/badge/release-cpp--TimSort%2F1.2.0-blue.svg)](https://github.com/timsort/cpp-TimSort/releases)
1+
[![Latest Release](https://img.shields.io/badge/release-cpp--TimSort%2F2.0.0-blue.svg)](https://github.com/timsort/cpp-TimSort/releases)
22
[![Build Status](https://travis-ci.org/timsort/cpp-TimSort.svg?branch=master)](https://travis-ci.org/timsort/cpp-TimSort)
3-
[![License](https://img.shields.io/:license-mit-blue.svg)](https://doge.mit-license.org)
3+
[![License](https://img.shields.io/:license-mit-yellow.svg)](https://doge.mit-license.org)
44

55
## TimSort
66

@@ -31,19 +31,26 @@ The full list of available signatures is as follows (in namespace `gfx`):
3131

3232
```cpp
3333
// Overloads taking a pair of iterators
34+
3435
template <typename RandomAccessIterator>
3536
void timsort(RandomAccessIterator const first, RandomAccessIterator const last);
37+
3638
template <typename RandomAccessIterator, typename Compare>
3739
void timsort(RandomAccessIterator const first, RandomAccessIterator const last,
3840
Compare compare);
41+
3942
template <typename RandomAccessIterator, typename Compare, typename Projection>
4043
void timsort(RandomAccessIterator const first, RandomAccessIterator const last,
4144
Compare compare, Projection projection);
45+
4246
// Overloads taking a range
47+
4348
template <typename RandomAccessRange>
4449
void timsort(RandomAccessRange &range);
50+
4551
template <typename RandomAccessRange, typename Compare>
4652
void timsort(RandomAccessRange &range, Compare compare);
53+
4754
template <typename RandomAccessRange, typename Compare, typename Projection>
4855
void timsort(RandomAccessRange &range, Compare compare, Projection projection);
4956
```

include/gfx/timsort.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838

3939
// Semantic versioning macros
4040

41-
#define GFX_TIMSORT_VERSION_MAJOR 1
42-
#define GFX_TIMSORT_VERSION_MINOR 2
41+
#define GFX_TIMSORT_VERSION_MAJOR 2
42+
#define GFX_TIMSORT_VERSION_MINOR 0
4343
#define GFX_TIMSORT_VERSION_PATCH 0
4444

4545
// Diagnostic selection macros

0 commit comments

Comments
 (0)