Skip to content

Commit

Permalink
Push v0.2 and update README to mention crates.io
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Jan 25, 2016
1 parent eaeb570 commit e93997b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rayon"
version = "0.1.0"
version = "0.2.0"

This comment has been minimized.

Copy link
@flying-sheep

flying-sheep Feb 5, 2016

please do

git tag v0.2.0 e93997b61590396cac4bcfbf85b9a9a63e3a990a
git push --tags

to fix #44

authors = ["Niko Matsakis <niko@alum.mit.edu>"]
description = "Simple work-stealing parallelism for Rust"
license = "Apache-2.0/MIT"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Rayon is a data-parallelism library for Rust. It is extremely
lightweight and makes it easy to convert a sequential computation into
a parallel one. It also guarantees data-race freedom. (You may also
enjoy [this blog post][blog] about Rayon, which gives more background
and details about how it works.)
and details about how it works.) Rayon is
[available on crates.io](https://crates.io/crates/rayon).

[blog]: http://smallcultfollowing.com/babysteps/blog/2015/12/18/rayon-data-parallelism-in-rust/

Expand Down

0 comments on commit e93997b

Please sign in to comment.