Skip to content

Commit 7246051

Browse files
committed
chore(release): 7.0.0
1 parent 7a11983 commit 7246051

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [7.0.0](https://github.com/Pantrist-dev/capacitor-plugin-ml-kit-text-recognition/compare/v6.2.1...v7.0.0) (2025-03-20)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* **cap-7:** migrate to capacitor 7
11+
12+
### Features
13+
14+
* **cap-7:** migrate to capacitor 7 ([7a11983](https://github.com/Pantrist-dev/capacitor-plugin-ml-kit-text-recognition/commit/7a119836f554d17eb716b142d781afdaee5fe647))
15+
* **spm:** migrate to Swift Package Manager ([da0cbee](https://github.com/Pantrist-dev/capacitor-plugin-ml-kit-text-recognition/commit/da0cbee20cb10fd4f173fbcfb2c4225b8126d409))
16+
517
### [6.2.1](https://github.com/Pantrist-dev/capacitor-plugin-ml-kit-text-recognition/compare/v6.2.0...v6.2.1) (2024-11-02)
618

719

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pantrist/capacitor-plugin-ml-kit-text-recognition",
3-
"version": "7.0.0-0",
3+
"version": "7.0.0",
44
"description": "Capacitor Wrapper for TextRecognition of Gogoles ML-Kit",
55
"main": "dist/plugin.cjs.js",
66
"module": "dist/esm/index.js",

rollup.config.mjs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
export default {
2+
input: 'dist/esm/index.js',
3+
output: [
4+
{
5+
file: 'dist/plugin.js',
6+
format: 'iife',
7+
name: 'capacitorCapacitorPluginMlKitTextRecognition',
8+
globals: {
9+
'@capacitor/core': 'capacitorExports',
10+
},
11+
sourcemap: true,
12+
inlineDynamicImports: true,
13+
},
14+
{
15+
file: 'dist/plugin.cjs.js',
16+
format: 'cjs',
17+
sourcemap: true,
18+
inlineDynamicImports: true,
19+
},
20+
],
21+
external: ['@capacitor/core'],
22+
};

0 commit comments

Comments
 (0)