Skip to content

Commit

Permalink
Merge pull request #28 from richbl/dev
Browse files Browse the repository at this point in the history
fix: Revved version for 0.6.1 release due to CVE-2024-34156 resolution
  • Loading branch information
richbl authored Dec 13, 2024
2 parents f485aff + 8d7c302 commit 2c23a51
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Edit the `config.toml` file found in the `internal/configuration` directory. The

```toml
# BLE Sync Cycle TOML configuration
# 0.6.0
# 0.6.1
[app]
logging_level = "debug" # Log messages to see during execution: "debug", "info", "warn", "error"
Expand Down Expand Up @@ -192,7 +192,7 @@ go run cmd/main.go
At this point, you should see the following output:

```bash
2024/12/11 22:02:28 Starting BLE Sync Cycle 0.6.0
2024/12/11 22:02:28 Starting BLE Sync Cycle 0.6.1
2024/12/11 22:02:28 INFO [BLE] Created new BLE central controller
2024/12/11 22:02:28 INFO [BLE] Now scanning the ether for BLE peripheral UUID of F1:42:D8:DE:35:16...
2024/12/11 22:02:42 INFO [BLE] Found BLE peripheral F1:42:D8:DE:35:16
Expand All @@ -207,7 +207,7 @@ At this point, you should see the following output:
In this first example, while the application was able to find the BLE peripheral, it failed to discover the CSC services and characteristics before timing out. Depending on the BLE peripheral, it may take some time before a BLE peripheral advertises both its device services and characteristics. If the peripheral is not responding, you may need to increase the timeout in the `config.toml` file.

```bash
2024/12/11 22:03:59 Starting BLE Sync Cycle 0.6.0
2024/12/11 22:03:59 Starting BLE Sync Cycle 0.6.1
2024/12/11 22:03:59 INFO [BLE] Created new BLE central controller
2024/12/11 22:03:59 INFO [BLE] Now scanning the ether for BLE peripheral UUID of F1:42:D8:DE:35:16...
2024/12/11 22:03:59 INFO [BLE] Found BLE peripheral F1:42:D8:DE:35:16
Expand Down
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type appControllers struct {

func main() {

log.Println("Starting BLE Sync Cycle 0.6.0")
log.Println("Starting BLE Sync Cycle 0.6.1")

// Load configuration
cfg, err := config.LoadFile("internal/configuration/config.toml")
Expand Down
2 changes: 1 addition & 1 deletion internal/configuration/config.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BLE Sync Cycle TOML configuration
# 0.6.0
# 0.6.1

[app]
logging_level = "debug" # Log messages to see during execution: "debug", "info", "warn", "error"
Expand Down

0 comments on commit 2c23a51

Please sign in to comment.