homebridge-flume 1.2.2 → 1.2.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
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to homebridge-flume will be documented in this file.
4
4
 
5
+ ## 1.2.3 (2022-01-03)
6
+
7
+ ### Changed
8
+
9
+ - HOOBS certified badge on README
10
+ - Plugin will log HAPNodeJS version on startup
11
+ - Bump `homebridge` recommended version to v1.3.9
12
+
5
13
  ## 1.2.2 (2021-12-21)
6
14
 
7
15
  ### Changed
package/README.md CHANGED
@@ -7,7 +7,8 @@
7
7
 
8
8
  Homebridge plugin to integrate Flume devices into HomeKit
9
9
 
10
- [![verified-by-homebridge](https://badgen.net/badge/homebridge/verified/purple)](https://github.com/homebridge/homebridge/wiki/Verified-Plugins)
10
+ [![verified-by-homebridge](https://badgen.net/badge/homebridge/verified/purple)](https://github.com/homebridge/homebridge/wiki/Verified-Plugins)
11
+ [![hoobs-certified](https://badgen.net/badge/HOOBS/certified/yellow)](https://plugins.hoobs.org/plugin/homebridge-thermobit)
11
12
  [![npm](https://img.shields.io/npm/v/homebridge-flume/latest?label=latest)](https://www.npmjs.com/package/homebridge-flume)
12
13
  [![npm](https://img.shields.io/npm/v/homebridge-flume/beta?label=beta)](https://github.com/bwp91/homebridge-flume/wiki/Beta-Version)
13
14
  [![npm](https://img.shields.io/npm/dt/homebridge-flume)](https://www.npmjs.com/package/homebridge-flume)
package/lib/index.js CHANGED
@@ -38,11 +38,12 @@ class FlumePlatform {
38
38
 
39
39
  // Log some environment info for debugging
40
40
  this.log(
41
- '%s v%s | Node %s | HB v%s%s...',
41
+ '%s v%s | Node %s | HB v%s | HAPNodeJS v%s%s...',
42
42
  this.lang.initialising,
43
43
  plugin.version,
44
44
  process.version,
45
45
  api.serverVersion,
46
+ api.hap.HAPLibraryVersion(),
46
47
  config.plugin_map
47
48
  ? ' | HOOBS v3'
48
49
  : require('os')
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "homebridge-flume",
3
3
  "alias": "Flume",
4
- "version": "1.2.2",
4
+ "version": "1.2.3",
5
5
  "author": {
6
6
  "name": "Ben Potter",
7
7
  "email": "bwp91@icloud.com"
@@ -23,7 +23,7 @@
23
23
  "water leak detector"
24
24
  ],
25
25
  "engines": {
26
- "homebridge": "^1.3.8",
26
+ "homebridge": "^1.3.9",
27
27
  "node": "^14.18.2 || ^16.13.1"
28
28
  },
29
29
  "repository": {