From 1dfea538b7ab5c52fcab6e8006945daf358904c3 Mon Sep 17 00:00:00 2001 From: Caemor <11088935+caemor@users.noreply.github.com> Date: Thu, 26 Mar 2020 17:33:54 +0100 Subject: [PATCH] Update changelog and ci --- .github/workflows/rust.yml | 10 ++++++---- CHANGELOG.md | 5 +++++ 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 923e565..71d1ca5 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 459d601..b06b281 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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