From 1ce319fb6c1b07a7ff0058061ee205abd2d16b8f Mon Sep 17 00:00:00 2001 From: Caleb Bourg Date: Thu, 12 Jan 2023 18:56:48 -0800 Subject: [PATCH 1/2] Update Cargo.toml for 0.3.0 release --- esp32-wroom-rp/Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/esp32-wroom-rp/Cargo.toml b/esp32-wroom-rp/Cargo.toml index 1bfe1d1..bd0cd48 100644 --- a/esp32-wroom-rp/Cargo.toml +++ b/esp32-wroom-rp/Cargo.toml @@ -3,13 +3,17 @@ authors = [ "Jim Hodapp", "Caleb Bourg", "Glyn Matthews", - "Dilyn Corner" + "Dilyn Corner", + "Rust Never Sleeps " ] edition = "2021" readme = "README.md" name = "esp32-wroom-rp" +license = "BSD-2-Clause-Patent" version = "0.3.0" description = "Rust-based Espressif ESP32-WROOM WiFi driver crate for RP2040 series microcontroller boards." +categories = ["embedded", "no-std", "hardware-support", "embedded-hal", "RP2040"] +repository = "https://github.com/Jim-Hodapp-Coaching/esp32-wroom-rp" [lib] name = "esp32_wroom_rp" From 14ea9c908368d5f5504db76aee010ac7e0f014af Mon Sep 17 00:00:00 2001 From: Caleb Bourg Date: Thu, 12 Jan 2023 19:06:59 -0800 Subject: [PATCH 2/2] add CHANGELOG.md --- CHANGELOG.md | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..5588ad1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,43 @@ +# Changelog + +All notable changes to this project 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.3.0] - 2022-01-12 + +Project related: +* First fully public release published to crates.io + +Features list: +* Monitor WiFi network connection status (revisit) +* Send a valid TCP data stream to remote server (no receiving/parsing a response) +* Support the use of both IP addresses and host names for remote servers + +Enhancements list: +* Address all current outstanding security audit issues: https://github.com/Jim-Hodapp-Coaching/esp32-wroom-rp/security/code-scanning + + +## [0.2.0] - 2022-10-27 + +New Features: +* Join a provided WiFi network (non-enterprise) +* Leave a WiFi network + +Enhancements: +* Runnable test harness for unit and doctests +* Improve architecture for Nina protocol implementation functions +* Eliminate all current rustc compiler warnings +* Improve on error handling throughout existing code + +## [0.1.0] - 2022-08-19 + +After a long and fun road through a [proof-of-concept](https://github.com/Jim-Hodapp-Coaching/esp32-pico-wifi) through to this simple but significant milestone, we are happy to announce a first unstable release of our embedded Rust crate `esp32-wroom-rp`. This provides the groundwork for significant WiFI functionality for the first generation RP2040 series feather boards provided by several different vendors. + +Besides putting significant aspects of the software design and architecture in place, this release includes the following features: + +### Feature list: + +- Retrieves the current version of the NINA firmware on the ESP32 target +- Provides an example embedded program demonstrating retrieving the NINA firmware version \ No newline at end of file