Skip to content

Commit 991e89e

Browse files
authoredJan 13, 2023
Merge pull request #68 from Jim-Hodapp-Coaching/release_0.3.0
Update Cargo.toml for 0.3.0 release
2 parents 3d26ef9 + 14ea9c9 commit 991e89e

File tree

2 files changed

+48
-1
lines changed

2 files changed

+48
-1
lines changed
 

‎CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
## [0.3.0] - 2022-01-12
9+
10+
Project related:
11+
* First fully public release published to crates.io
12+
13+
Features list:
14+
* Monitor WiFi network connection status (revisit)
15+
* Send a valid TCP data stream to remote server (no receiving/parsing a response)
16+
* Support the use of both IP addresses and host names for remote servers
17+
18+
Enhancements list:
19+
* Address all current outstanding security audit issues: https://github.com/Jim-Hodapp-Coaching/esp32-wroom-rp/security/code-scanning
20+
21+
22+
## [0.2.0] - 2022-10-27
23+
24+
New Features:
25+
* Join a provided WiFi network (non-enterprise)
26+
* Leave a WiFi network
27+
28+
Enhancements:
29+
* Runnable test harness for unit and doctests
30+
* Improve architecture for Nina protocol implementation functions
31+
* Eliminate all current rustc compiler warnings
32+
* Improve on error handling throughout existing code
33+
34+
## [0.1.0] - 2022-08-19
35+
36+
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.
37+
38+
Besides putting significant aspects of the software design and architecture in place, this release includes the following features:
39+
40+
### Feature list:
41+
42+
- Retrieves the current version of the NINA firmware on the ESP32 target
43+
- Provides an example embedded program demonstrating retrieving the NINA firmware version

‎esp32-wroom-rp/Cargo.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,17 @@ authors = [
33
"Jim Hodapp",
44
"Caleb Bourg",
55
"Glyn Matthews",
6-
"Dilyn Corner"
6+
"Dilyn Corner",
7+
"Rust Never Sleeps <rns@jimhodappcoaching.com>"
78
]
89
edition = "2021"
910
readme = "README.md"
1011
name = "esp32-wroom-rp"
12+
license = "BSD-2-Clause-Patent"
1113
version = "0.3.0"
1214
description = "Rust-based Espressif ESP32-WROOM WiFi driver crate for RP2040 series microcontroller boards."
15+
categories = ["embedded", "no-std", "hardware-support", "embedded-hal", "RP2040"]
16+
repository = "https://github.com/Jim-Hodapp-Coaching/esp32-wroom-rp"
1317

1418
[lib]
1519
name = "esp32_wroom_rp"

0 commit comments

Comments
 (0)
Please sign in to comment.