Skip to content

Commit 02ac4a5

Browse files
authored
[OFFICIAL RELEASE] 3.2.1
- (@foxriver76) updated types - (@GermanBluefox) Added i18n module - (@GermanBluefox) Migrated eslint to iobroker.eslint-config
1 parent 0852668 commit 02ac4a5

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ If you find errors in the definitions, e.g., function calls that should be allow
164164
Placeholder for the next version (at the beginning of the line):
165165
### **WORK IN PROGRESS**
166166
-->
167-
### **WORK IN PROGRESS**
167+
### 3.2.1 (2024-09-28)
168168

169169
- (@foxriver76) updated types
170170
- (@GermanBluefox) Added i18n module

build/cjs/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/cjs/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/esm/build/cjs/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { type ExitCodes } from './exitCodes.js';
22
import '@iobroker/types';
33
export { commonTools } from './controllerTools.js';
44
export * from './utils.js';
5-
export * as I18n from './utils.js';
5+
export * as I18n from './i18n.js';
66
/**
77
* Returns the absolute path of the data directory for the current host. On linux, this is usually `/opt/iobroker/iobroker-data`.
88
*/

build/esm/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { type ExitCodes } from './exitCodes.js';
22
import '@iobroker/types';
33
export { commonTools } from './controllerTools.js';
44
export * from './utils.js';
5-
export * as I18n from './utils.js';
5+
export * as I18n from './i18n.js';
66
/**
77
* Returns the absolute path of the data directory for the current host. On linux, this is usually `/opt/iobroker/iobroker-data`.
88
*/

build/esm/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import '@iobroker/types';
55
// Export utility methods to be used in adapters
66
export { commonTools } from './controllerTools.js';
77
export * from './utils.js';
8-
export * as I18n from './utils.js';
8+
export * as I18n from './i18n.js';
99
/**
1010
* Returns the absolute path of the data directory for the current host. On linux, this is usually `/opt/iobroker/iobroker-data`.
1111
*/

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iobroker/adapter-core",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "Core module to be used in ioBroker adapters. Acts as the bridge to js-controller.",
55
"engines": {
66
"node": ">=16"

0 commit comments

Comments
 (0)