@stoprocent/noble 1.11.3 → 1.11.5

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
@@ -1,3 +1,7 @@
1
+ ## Version 1.11.4
2
+
3
+ * hci-socket binding: use latest bluetooth-hci-socket dependency (~0.6.2)
4
+
1
5
  ## Version 1.9.1
2
6
 
3
7
  * Don't forget previously discovered services and characteristics ([@elafargue](https://github.com/elafargue))
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "license": "MIT",
8
8
  "name": "@stoprocent/noble",
9
9
  "description": "A Node.js BLE (Bluetooth Low Energy) central library.",
10
- "version": "1.11.3",
10
+ "version": "1.11.5",
11
11
  "repository": {
12
12
  "type": "git",
13
13
  "url": "https://github.com/stoprocent/noble.git"
@@ -9,7 +9,7 @@ describe('hci-socket hci', () => {
9
9
  const Socket = sinon.stub();
10
10
 
11
11
  const Hci = proxyquire('../../../lib/hci-socket/hci', {
12
- '@abandonware/bluetooth-hci-socket': Socket
12
+ '@stoprocent/bluetooth-hci-socket': Socket
13
13
  });
14
14
 
15
15
  let hci;