Skip to content

Commit

Permalink
Merge pull request #19 from WaffleLapkin/release-0.2.0
Browse files Browse the repository at this point in the history
Release version 0.2.0
  • Loading branch information
WaffleLapkin authored Apr 4, 2020
2 parents 55a3395 + e4126dc commit 51b1d05
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## 0.2.0

- Add `Slice::array_windows` method and `iter::ArrayWindows` iterator (https://github.com/WaffleLapkin/arraylib/pull/16)
- Add `if_alloc` macro (https://github.com/WaffleLapkin/arraylib/pull/13, https://github.com/WaffleLapkin/arraylib/pull/15)
- Rename `Array::{from_iter => try_from_iter}` and add `Array::from_iter` (https://github.com/WaffleLapkin/arraylib/pull/12)
- Add `ArrayExt::{ref,mut}_cast`, `ArrayExt::try_{ref,mut}_cast` and `ArrayExt::{ref,mut}_cast_unchecked` methods (https://github.com/WaffleLapkin/arraylib/pull/9)
- Clean `util::init::try_unfold_array` and fix UB in it (see issue https://github.com/WaffleLapkin/arraylib/issues/5 and PRs https://github.com/WaffleLapkin/arraylib/pull/7, https://github.com/WaffleLapkin/arraylib/pull/10)
- Simplify `SizeError` (https://github.com/WaffleLapkin/arraylib/pull/4 and https://github.com/WaffleLapkin/arraylib/pull/17)

## 0.1.0

Initial version (commit https://github.com/WaffleLapkin/arraylib/commit/1e5d034c37ff7a182c0462d6c41d4f2c74cf20f6)
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "arraylib"
description = "Tools for working with arrays"
version = "0.1.0"
version = "0.2.0"
authors = ["Waffle <waffle.lapkin@gmail.com>"]
license = "MIT"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

```toml
[dependencies]
arraylib = "0.1"
arraylib = "0.2"
```

_Compiler support: requires rustc 1.41+_
Expand Down

0 comments on commit 51b1d05

Please sign in to comment.