Skip to content

Commit 172ea23

Browse files
committed
release: bump version to 0.3.0 and up changelog
Signed-off-by: Paul Osborne <[email protected]>
1 parent 421c322 commit 172ea23

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Spidev Crate Changelog
22

3-
## 0.2.0 / 2016-4-12
3+
## 0.3.0 / 2016-10-26
4+
5+
- The older supported version of rustc for this release is 1.7.0
6+
- Bump to nix 0.6.0
7+
- [transfer_multiple](http://posborne.github.io/rust-spidev/spidev/struct.Spidev.html#method.transfer_multiple) now
8+
receives an `IntoIterator` rather than requiring that a Vec reference be
9+
provided. ([#7](https://github.com/rust-embedded/rust-spidev/pull/7))
10+
- [transfer_multiple](http://posborne.github.io/rust-spidev/spidev/struct.Spidev.html#method.transfer_multiple) no
11+
longer performs heap allocations internally (nor does it require heap
12+
allocations to be used). ([#8](https://github.com/rust-embedded/rust-spidev/pull/8))
13+
14+
## 0.2.1 / 2016-4-12
415

516
[Full Changelog](https://github.com/posborne/rust-spidev/compare/0.2.0...0.2.1)
617

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "spidev"
4-
version = "0.2.1"
4+
version = "0.3.0"
55
authors = ["Paul Osborne <[email protected]>"]
66
license = "MIT/Apache-2.0"
77
repository = "https://github.com/rust-embedded/rust-spidev"
@@ -14,6 +14,6 @@ half-duplex SPI access, and full-duplex SPI access.
1414
"""
1515

1616
[dependencies]
17-
libc = "^0.2.2"
18-
bitflags = "^0.3.3"
19-
nix = "^0.6.0"
17+
libc = "0.2.2"
18+
bitflags = "0.3.3"
19+
nix = "0.6.0"

0 commit comments

Comments
 (0)