diff --git a/CHANGELOG.md b/CHANGELOG.md index d62ebc3..472d7e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to OpenEMC will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.8.0 - 2023-11-16 +### Added +- allow querying of bootloader CRC32 and flash size via sysfs +- power: switch to charging mode when battery is below critical voltage +- bootloader: dynamic flash size detection +- logging: gzip ELF images to save space on target +- logging: find bootloader ELF image based on CRC32 of bootloader + ## 0.7.2 - 2023-09-06 ### Fixed - configuration location in flash diff --git a/openemc-firmware/Cargo.lock b/openemc-firmware/Cargo.lock index 85a4584..30f6ea9 100644 --- a/openemc-firmware/Cargo.lock +++ b/openemc-firmware/Cargo.lock @@ -344,7 +344,7 @@ version = "0.0.0" [[package]] name = "openemc-firmware" -version = "0.7.2" +version = "0.8.0" dependencies = [ "cortex-m", "cortex-m-rt", diff --git a/openemc-firmware/Cargo.toml b/openemc-firmware/Cargo.toml index 35dba7e..f4502f3 100644 --- a/openemc-firmware/Cargo.toml +++ b/openemc-firmware/Cargo.toml @@ -3,7 +3,7 @@ name = "openemc-firmware" description = "OpenEMC Firmware" authors = ["Sebastian Urban "] license = "GPL-3.0" -version = "0.7.2" +version = "0.8.0" publish = false edition = "2021"