diff --git a/CHANGELOG.md b/CHANGELOG.md index 97e418c..daabe29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.0-beta.6] - 2023-09-30 + +### Added + +- Add activity lifecycle callbacks to `bridge` module + - Add `onPause()` method + - Add `onResume()` method + +### Fixed + +- Kill Node.js process when closing Electron app + +### Changed + +- Provide types package for the `bridge` module as `.tgz` + ## [1.0.0-beta.5] - 2023-09-15 ### Fixed diff --git a/README.md b/README.md index 8fe051b..64c4b93 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ **Capacitor v5 or newer is required. This project isn't compatible with lower versions of Capacitor.** ```bash -npm install https://github.com/hampoelz/capacitor-nodejs/releases/download/v1.0.0-beta.5/capacitor-nodejs.tgz +npm install https://github.com/hampoelz/capacitor-nodejs/releases/download/v1.0.0-beta.6/capacitor-nodejs.tgz npx cap sync ``` diff --git a/package.json b/package.json index 643074c..d158a0e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "capacitor-nodejs", - "version": "1.0.0-beta.5", + "version": "1.0.0-beta.6", "description": "A full-fledged Node.js runtime for Capacitor apps", "main": "dist/plugin.cjs.js", "module": "dist/esm/index.js",