Skip to content

Commit 79393fe

Browse files
authored
Bump version to 0.2.0 (#19)
* add PR template * add CHANGELOG * version bump to v0.2.0
1 parent dbd3ee1 commit 79393fe

File tree

3 files changed

+77
-1
lines changed

3 files changed

+77
-1
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Checklist
2+
3+
Thanks for contributing! Please ensure
4+
5+
- [ ] All tests are passing
6+
- [ ] Tests or examples are added, if necessary
7+
- [ ] Add a `CHANGELOG.md` entryin the *Unreleased* section under the appropriate heading
8+
9+
# Pull Request Description
10+
11+
_overview of the change_

CHANGELOG.md

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.2.0] - 2020-09-13
11+
12+
### Added
13+
14+
- Implemented [embedded-graphics][embedded-graphics] support, behind a feature
15+
- Command line parsing tools using clap
16+
- Example usage of the library
17+
- Documentation of the public API
18+
- This CHANGELOG.md
19+
20+
### Changed
21+
22+
- Switched to new C++ API to enable full control of behavior from rust
23+
24+
## [0.1.5] - 2020-08-08
25+
26+
### Fixed
27+
28+
- Fixed segfault caused by improperly packed C structure
29+
30+
## [0.1.4] - 2020-08-08
31+
32+
### Changed
33+
34+
- Changed the [crates.io][crates-io-link] homepage to our [docs.rs][docs-rs-link] page
35+
36+
## [0.1.3] - 2020-08-08
37+
38+
### Added
39+
40+
- Optimizations for release builds
41+
- GitHub Actions build CI
42+
43+
### Changed
44+
45+
- Replace `uint8_t` with `u8` per clippy lint
46+
- Other clippy lint cleanups
47+
48+
## [0.1.2] - 2020-08-08
49+
50+
### Changed
51+
52+
- Redirected the [crates.io][crates-io-link] repository to its new home, [rust-rpi-led-matrix/rust-rpi-rgb-led-matrix][github-link]
53+
54+
## [0.1.1] - 2018-02-12
55+
56+
- Change LedCanvas to a struct
57+
58+
## [0.1.0] - 2018-02-12
59+
60+
- Initial release
61+
62+
[embedded-graphics]: https://github.com/jamwaffles/embedded-graphics/tree/master/embedded-graphics
63+
[crates-io-link]: https://crates.io/crates/rpi-led-matrix
64+
[docs-rs-link]: https://docs.rs/rpi-led-matrix/
65+
[github-link]: https://github.com/rust-rpi-led-matrix/rust-rpi-rgb-led-matrix/

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rpi-led-matrix"
33
description = "Bindings for Hzeller's RPi-RGB-Led-Matrix"
4-
version = "0.1.5"
4+
version = "0.2.0"
55
authors = [
66
"Vincent Pasquier <[email protected]>",
77
"Tyler Holmes <[email protected]>",

0 commit comments

Comments
 (0)