Skip to content

Commit ab21366

Browse files
authored
Merge pull request #8 from alecmocatta/v0.1.1
Release v0.1.1
2 parents 6b48acc + 8819c9e commit ab21366

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "streaming_algorithms"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
license = "MIT OR Apache-2.0"
55
authors = ["Alec Mocatta <alec@mocatta.net>"]
66
categories = ["data-structures","algorithms","science"]
@@ -10,7 +10,7 @@ SIMD-accelerated implementations of various streaming algorithms, including Coun
1010
"""
1111
repository = "https://github.com/alecmocatta/streaming_algorithms"
1212
homepage = "https://github.com/alecmocatta/streaming_algorithms"
13-
documentation = "https://docs.rs/streaming_algorithms/0.1.0"
13+
documentation = "https://docs.rs/streaming_algorithms/0.1.1"
1414
readme = "README.md"
1515
edition = "2018"
1616

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
[![Crates.io](https://img.shields.io/crates/v/streaming_algorithms.svg?maxAge=86400)](https://crates.io/crates/streaming_algorithms)
44
[![MIT / Apache 2.0 licensed](https://img.shields.io/crates/l/streaming_algorithms.svg?maxAge=2592000)](#License)
5-
[![Build Status](https://dev.azure.com/alecmocatta/template-rust/_apis/build/status/tests?branchName=master)](https://dev.azure.com/alecmocatta/template-rust/_build/latest?branchName=master)
5+
[![Build Status](https://dev.azure.com/alecmocatta/streaming_algorithms/_apis/build/status/tests?branchName=master)](https://dev.azure.com/alecmocatta/streaming_algorithms/_build/latest?branchName=master)
66

7-
[Docs](https://docs.rs/streaming_algorithms/0.1.0)
7+
[Docs](https://docs.rs/streaming_algorithms/0.1.1)
88

99
SIMD-accelerated implementations of various [streaming algorithms](https://en.wikipedia.org/wiki/Streaming_algorithm).
1010

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
//!
2222
//! As these implementations are often in hot code paths, unsafe is used, albeit only when necessary to a) achieve the asymptotically optimal algorithm or b) mitigate an observed bottleneck.
2323
24-
#![doc(html_root_url = "https://docs.rs/streaming_algorithms/0.1.0")]
24+
#![doc(html_root_url = "https://docs.rs/streaming_algorithms/0.1.1")]
2525
#![feature(specialization, try_trait)]
2626
#![warn(
2727
missing_copy_implementations,

0 commit comments

Comments
 (0)