diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aaf2f2..416ddbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.5](https://github.com/huextrat/react-native-screenshot-aware/compare/v1.0.4...v1.0.5) (2025-01-09) + + +### Bug Fixes + +* **deps:** update dependency react-native to v0.76.6 ([#113](https://github.com/huextrat/react-native-screenshot-aware/issues/113)) ([22f0da2](https://github.com/huextrat/react-native-screenshot-aware/commit/22f0da2f3dda85b4d8f600e93edadf3a79b8e84d)) + ## [1.0.4](https://github.com/huextrat/react-native-screenshot-aware/compare/v1.0.3...v1.0.4) (2024-09-30) diff --git a/package.json b/package.json index ff6e88b..e400c49 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-screenshot-aware", - "version": "1.0.4", + "version": "1.0.5", "description": "React Native module for real-time screenshot detection on Android and iOS", "source": "src/index.tsx", "main": "lib/commonjs/index.js", @@ -87,7 +87,9 @@ "react": "*", "react-native": "*" }, - "workspaces": ["example"], + "workspaces": [ + "example" + ], "packageManager": "yarn@4.6.0", "jest": { "preset": "react-native", @@ -95,12 +97,16 @@ "/example/node_modules", "/lib/" ], - "setupFilesAfterEnv": ["/setupJest.ts"], + "setupFilesAfterEnv": [ + "/setupJest.ts" + ], "transform": { "^.+\\.(js)$": [ "babel-jest", { - "plugins": ["babel-plugin-syntax-hermes-parser"] + "plugins": [ + "babel-plugin-syntax-hermes-parser" + ] } ] }, @@ -113,12 +119,18 @@ "collectCoverage": true }, "commitlint": { - "extends": ["@commitlint/config-conventional"] + "extends": [ + "@commitlint/config-conventional" + ] }, "react-native-builder-bob": { "source": "src", "output": "lib", - "targets": ["commonjs", "module", "typescript"] + "targets": [ + "commonjs", + "module", + "typescript" + ] }, "codegenConfig": { "name": "ScreenshotAwareSpec",