Skip to content

Commit

Permalink
Preparing for release
Browse files Browse the repository at this point in the history
- Updated changelog
- Updated version
- Updated badge
- Updated some docs
  • Loading branch information
Lucretiel committed Sep 11, 2018
1 parent 2b43777 commit 211c5c4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ and this project adheres to [Semantic Versioning 2.0.0](https://semver.org/spec/

This changelog was added after the release of 1.0.0; changes before that are left undocumented.

## 1.2.0

2018-09-10

### Changed

- Joinery is now `#![no_std]`

## 1.1.2

2018-08-23
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "joinery"
version = "1.1.2"
version = "1.2.0"
authors = ["Nathan West <Lucretiel@gmail.com>"]
readme = "README.md"
license = "MIT"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Travis (.com)](https://img.shields.io/travis/com/Lucretiel/joinery.svg?logo=travis)](https://travis-ci.com/Lucretiel/joinery/) [![GitHub stars](https://img.shields.io/github/stars/Lucretiel/joinery.svg?label=stars&logo=github&logoColor=white)](https://github.com/Lucretiel/joinery) [![Crates.io](https://img.shields.io/crates/d/joinery.svg?logo=rust&logoColor=white&label=crates.io)](https://crates.io/crates/joinery) [![docs.rs](https://img.shields.io/badge/docs.rs-1.1.2-blue.svg)](https://docs.rs/joinery) [![Github commits (since latest release)](https://img.shields.io/github/commits-since/Lucretiel/joinery/release.svg?label=commits%20since%20last%20release)](https://github.com/Lucretiel/joinery/commits) [![license](https://img.shields.io/github/license/Lucretiel/joinery.svg)](https://crates.io/crates/joinery/)
[![Travis (.com)](https://img.shields.io/travis/com/Lucretiel/joinery.svg?logo=travis)](https://travis-ci.com/Lucretiel/joinery/) [![GitHub stars](https://img.shields.io/github/stars/Lucretiel/joinery.svg?label=stars&logo=github&logoColor=white)](https://github.com/Lucretiel/joinery) [![Crates.io](https://img.shields.io/crates/d/joinery.svg?logo=rust&logoColor=white&label=crates.io)](https://crates.io/crates/joinery) [![docs.rs](https://docs.rs/joinery/badge.svg)](https://docs.rs/joinery) [![Github commits (since latest release)](https://img.shields.io/github/commits-since/Lucretiel/joinery/release.svg?label=commits%20since%20last%20release)](https://github.com/Lucretiel/joinery/commits) [![license](https://img.shields.io/github/license/Lucretiel/joinery.svg)](https://crates.io/crates/joinery/)

# joinery
A Rust library for generically joining iterables with a separator. Provides the tragically missing string join functionality to rust.
Expand Down Expand Up @@ -27,16 +27,16 @@ Add joinery to your `Cargo.toml`:

```toml
[dependencies]
joinery = "1.1.2"
joinery = "1.2.0"
```

### Nightly-only features

joinery supports various nightly-only optimization features, such as `iter::TrustedLen` and `Iterator::try_fold` (which requires `ops::Try`). These features are enabled with the `"nightly"` cargo feature:
joinery supports various nightly-only optimization features, such as `iter::TrustedLen`. These features are enabled with the `"nightly"` cargo feature:

```toml
[dependencies.joinery]
version = "1.1.2"
version = "1.2.0"
features = ["nightly"]
```

Expand Down

0 comments on commit 211c5c4

Please sign in to comment.