Skip to content

Commit

Permalink
prepare new version
Browse files Browse the repository at this point in the history
  • Loading branch information
dernasherbrezon committed Aug 5, 2024
1 parent eb0ba86 commit e11c056
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
12 changes: 7 additions & 5 deletions idf_component.yml
Original file line number Diff line number Diff line change
@@ -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_*"
5 changes: 2 additions & 3 deletions library.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -27,8 +27,7 @@
"**/sdkconfig",
"**/sdkconfig.old",
"**/dependencies.lock",
"**/cmake-build-debug",
"**/cmake-build-remote",
"**/cmake-build-*",
"**/.idea",
"**/.DS_Store",
"**/.git",
Expand Down
6 changes: 6 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env bash

compote component pack --namespace dernasherbrezon --name sx127x

pio account login
pio pkg publish

0 comments on commit e11c056

Please sign in to comment.