Skip to content

Commit f580510

Browse files
committed
Update version to 1.0.0
1 parent 56b76a7 commit f580510

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 1.0.0 - 2018-07-18
2+
Replace dependency on Crate [pdqsort](https://github.com/orlp/pdqsort) with [`sort_unstable`](https://doc.rust-lang.org/std/primitive.slice.html#method.sort_unstable).
3+
14
# 0.1.3 - 2017-05-08
25
Update pdqsort to 0.1.2 and update pbr to fix compilation issue due to https://github.com/rust-lang/rust/issues/40952#issuecomment-293720927
36

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dmsort"
3-
version = "0.1.3"
3+
version = "1.0.0"
44
authors = ["Emil Ernerfeldt <[email protected]>"]
55
description = """
66
Fast adaptive sorting for when most of your data is already in order.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Definition: X% of elements are in order if the [Longest Nondecreasing Subsequenc
1111
Add this to `Cargo.toml`:
1212
```
1313
[dependencies]
14-
dmsort = "0.1.3"
14+
dmsort = "1.0.0"
1515
```
1616

1717
And then use it:

0 commit comments

Comments
 (0)