Update changelog and ci

embedded-hal-1.0
Caemor 2020-03-26 17:33:54 +01:00
parent dcc264c2b0
commit 1dfea538b7
2 changed files with 11 additions and 4 deletions

View File

@ -25,11 +25,13 @@ jobs:
- name: Check Fmt
run: cargo fmt --all -- --check
- name: Build lib
run: cargo check --verbose
run: cargo check --all-targets --verbose
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings -A clippy::new_ret_no_self
- name: Build examples
run: cargo build --examples --verbose
#- name: Run tests
# run: cargo test --verbose
run: cargo build --examples --all-targets --verbose
- name: Run tests
run: cargo test --verbose
- name: Build docs
run: cargo doc --all-features

View File

@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
- Update embedded-graphics,
- Remove useless Featuregates (Doesn't change size)
- Update and integrate a few important examples and remove the others
- Add update_and_display_frame to the main trait, fixes #38
- Also improve position of busy_wait (#30) once more
<!-- ## [v0.3.2] - 2019-04-04 -->