particle-commands 0.5.2 → 0.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,9 @@
3
3
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
4
4
  and this project adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ### 0.5.3 - 2023-10-18
7
+ - Fix template
8
+
6
9
  ### 0.5.2 - 2023-10-17
7
10
  - Fix asset ota key in project properties file
8
11
 
@@ -29,7 +29,7 @@ void loop() {
29
29
  // The core of your code will likely live here.
30
30
 
31
31
  // Example: Publish event to cloud every 10 seconds. Uncomment the next 3 lines to try it!
32
- // Logging.info("Sending Hello World to the cloud!");
32
+ // Log.info("Sending Hello World to the cloud!");
33
33
  // Particle.publish("Hello world!");
34
34
  // delay( 10 * 1000 ); // milliseconds and blocking - see docs for more info!
35
35
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "particle-commands",
3
3
  "description": "Library of UX-neutral commands that provide key functionality for developer tools",
4
- "version": "0.5.2",
4
+ "version": "0.5.3",
5
5
  "author": "Matthew McGowan",
6
6
  "bugs": {
7
7
  "url": "https://github.com/particle-iot/particle-commands/issues"
@@ -29,7 +29,7 @@ void loop() {
29
29
  // The core of your code will likely live here.
30
30
 
31
31
  // Example: Publish event to cloud every 10 seconds. Uncomment the next 3 lines to try it!
32
- // Logging.info("Sending Hello World to the cloud!");
32
+ // Log.info("Sending Hello World to the cloud!");
33
33
  // Particle.publish("Hello world!");
34
34
  // delay( 10 * 1000 ); // milliseconds and blocking - see docs for more info!
35
35
  }