From e11c056a32a39e783bd7178054884acaeec10e9c Mon Sep 17 00:00:00 2001 From: dernasherbrezon Date: Mon, 5 Aug 2024 13:43:12 +0200 Subject: [PATCH] prepare new version --- README.md | 1 + idf_component.yml | 12 +++++++----- library.json | 5 ++--- release.sh | 6 ++++++ 4 files changed, 16 insertions(+), 8 deletions(-) create mode 100644 release.sh diff --git a/README.md b/README.md index 9e5ea3b..5e2bdd0 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ There are several similar libraries exist, but this one is much better: * No busy loops for handling RX and TX events. See examples on how to configure and handle interrupts. * Good documentation. * Can be used on ESP32 or RaspberryPI or any other linux with GPIO pins. +* Cache for SPI registers. Improve power consumption and performance while communicating via SPI bus * [debug registers](debug_registers/README.md) This library supports all standard LoRa features: diff --git a/idf_component.yml b/idf_component.yml index 7c9b855..9ef0bfd 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,11 +1,13 @@ -version: "3.1.2" -description: Library to work with LoRa chips sx127x -url: https://github.com/dernasherbrezon/sx127x +version: "3.2.1" +description: "Library to work with LoRa chips sx127x" +url: "https://github.com/dernasherbrezon/sx127x" +license: "Apache-2.0" files: exclude: - - "**/cmake-build-debug/**/*" - - "**/cmake-build-remote/**/*" + - "**/cmake-build-*/**/*" - "**/debug/**/*" - "**/.pio/**/*" + - "**/.vscode/**/*" + - "**/.github/**/*" - "**/.gitignore" - "**/*_linux_*" diff --git a/library.json b/library.json index cefd29f..63e9488 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "sx127x", - "version": "3.1.2", + "version": "3.2.1", "description": "Library to work with LoRa chips sx127x", "keywords": "sx127x, lora, sx1278, sx1276, sx1277, sx1279", "repository": { @@ -27,8 +27,7 @@ "**/sdkconfig", "**/sdkconfig.old", "**/dependencies.lock", - "**/cmake-build-debug", - "**/cmake-build-remote", + "**/cmake-build-*", "**/.idea", "**/.DS_Store", "**/.git", diff --git a/release.sh b/release.sh new file mode 100644 index 0000000..652e4fe --- /dev/null +++ b/release.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +compote component pack --namespace dernasherbrezon --name sx127x + +pio account login +pio pkg publish \ No newline at end of file