homey 4.0.7 → 4.0.9

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/lib/AppPython.js CHANGED
@@ -578,7 +578,7 @@ class AppPython extends App {
578
578
  const appJson = {
579
579
  id: answers.id,
580
580
  version: '1.0.0',
581
- compatibility: '>=12.11.1',
581
+ compatibility: '>=13.0.0',
582
582
  sdk: 3,
583
583
  runtime: 'python',
584
584
  pythonVersion: latestSupportedPythonVersion,
package/lib/AthomApi.js CHANGED
@@ -228,7 +228,7 @@ class AthomApi {
228
228
  const homeyApi = await homey.authenticate({ strategy }).catch((err) => {
229
229
  if (err instanceof APIErrorHomeyOffline) {
230
230
  throw new Error(
231
- `${homey.name} (${homey.id}) seems to be offline. Are you sure you're in the same LAN network?`,
231
+ `${homey.name} (${homey.id}) seems to be offline. Are you sure you're in the same local network?`,
232
232
  );
233
233
  }
234
234
  throw err;
@@ -139,7 +139,7 @@ export async function resolveRequestedHomey(homeyId) {
139
139
 
140
140
  function normalizeOfflineError(homey) {
141
141
  return new Error(
142
- `${homey.name} (${homey.id}) seems to be offline. Are you sure you're in the same LAN network?`,
142
+ `${homey.name} (${homey.id}) seems to be offline. Are you sure you're in the same local network?`,
143
143
  );
144
144
  }
145
145
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey",
3
- "version": "4.0.7",
3
+ "version": "4.0.9",
4
4
  "description": "Command-line interface and type declarations for Homey Apps",
5
5
  "main": "bin/homey.js",
6
6
  "files": [
@@ -41,8 +41,8 @@
41
41
  "filesize": "^6.4.0",
42
42
  "fs-extra": "^10.1.0",
43
43
  "get-port": "^5.1.1",
44
- "homey-lib": "^2.45.1",
45
- "homey-api": "^3.17.1",
44
+ "homey-api": "^3.17.2",
45
+ "homey-lib": "^2.46.1",
46
46
  "ignore-walk": "^3.0.3",
47
47
  "inquirer": "8.1.2",
48
48
  "object-path": "^0.11.4",