node-switchbot 2.0.1-beta.1 → 2.0.2-beta.0

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.
@@ -1,10 +1,8 @@
1
1
  name: Changelog to Release
2
2
 
3
3
  on:
4
- workflow_dispatch:
5
- push:
6
- paths: [CHANGELOG.md]
7
- branches: [latest]
4
+ release:
5
+ types: [published]
8
6
 
9
7
  jobs:
10
8
  changerelease:
@@ -1,10 +1,8 @@
1
1
  name: Node Release
2
2
 
3
3
  on:
4
- push:
5
- tags:
6
- - 'v*.*.*'
7
- workflow_dispatch:
4
+ release:
5
+ types: [published]
8
6
 
9
7
  jobs:
10
8
  build_and_test:
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/)
4
4
 
5
+ ## [2.0.1](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v2.0.1) (2024-02-06)
6
+
7
+ ### What's Changed
8
+ - Fix async constructor, Thanks [@dnicolson](https://github.com/dnicolson) [#229](https://github.com/OpenWonderLabs/node-switchbot/pull/220)
9
+ - Housekeeping and update dependencies
10
+
11
+ **Full Changelog**: https://github.com/OpenWonderLabs/node-switchbot/compare/v2.0.0...v2.0.1
12
+
5
13
  ## [2.0.0](https://github.com/OpenWonderLabs/node-switchbot/releases/tag/v2.0.0) (2024-02-05)
6
14
 
7
15
  ### What's Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-switchbot",
3
- "version": "2.0.1-beta.1",
3
+ "version": "2.0.2-beta.0",
4
4
  "description": "The node-switchbot is a Node.js module which allows you to control your Switchbot Devices through Bluetooth (BLE).",
5
5
  "homepage": "https://github.com/OpenWonderLabs/node-switchbot",
6
6
  "author": "OpenWonderLabs (https://github.com/OpenWonderLabs)",
@@ -36,7 +36,7 @@
36
36
  ],
37
37
  "readmeFilename": "README.md",
38
38
  "dependencies": {
39
- "@abandonware/noble": "^1.9.2-23"
39
+ "@abandonware/noble": "^1.9.2-24"
40
40
  },
41
41
  "optionalDependencies": {
42
42
  "@abandonware/bluetooth-hci-socket": "^0.5.3-10"