From d46db90dd3d48a76d69e84e26587a16164f691af Mon Sep 17 00:00:00 2001 From: Priit Laes Date: Wed, 25 Oct 2023 17:23:35 +0300 Subject: [PATCH] Bump crate to 3.0.0-alpha.1 due to API changes And fill out Changelog. --- CHANGELOG.md | 6 +++++- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb38b07..4badaba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [v3.0.0] - Unreleased + +- Switch SpiInterface to use SpiDevice trait. +- Implement functionality for continuous wave mode. +- Support preamble detection allowing LoRaWAN RX1+RX2 reception. ## [v2.1.2] - 2023-09-25 diff --git a/Cargo.toml b/Cargo.toml index 2d836d0..6ad7504 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lora-phy" -version = "2.1.2" +version = "3.0.0-alpha.1" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/embassy-rs/lora-phy"