From 73eb1fcf01a43fbe0b210bef854a38ba95ba7970 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 19 Feb 2025 16:07:23 +0000 Subject: [PATCH] chore(release): 7.0.19 --- CHANGELOG.md | 8 ++++++++ .../forgr/capacitor_updater/CapacitorUpdaterPlugin.java | 2 +- ios/Plugin/CapacitorUpdaterPlugin.swift | 2 +- package.json | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5928ee5e..7c428be9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ 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. +### [7.0.19](https://github.com/Cap-go/capacitor-updater/compare/7.0.18...7.0.19) (2025-02-19) + + +### Bug Fixes + +* better logs and debug ([2179792](https://github.com/Cap-go/capacitor-updater/commit/217979245ca012a7fe2d99112e6e7d3878f092a4)) +* improve error handling manifest ([a060842](https://github.com/Cap-go/capacitor-updater/commit/a060842e9d48e59666f24b649223c74b6909705d)) + ### [7.0.18](https://github.com/Cap-go/capacitor-updater/compare/7.0.17...7.0.18) (2025-02-18) diff --git a/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java b/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java index adbb8264..a8ee2f9c 100644 --- a/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java +++ b/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java @@ -57,7 +57,7 @@ public class CapacitorUpdaterPlugin extends Plugin { private static final String statsUrlDefault = "https://plugin.capgo.app/stats"; private static final String channelUrlDefault = "https://plugin.capgo.app/channel_self"; - private final String PLUGIN_VERSION = "7.0.18"; + private final String PLUGIN_VERSION = "7.0.19"; private static final String DELAY_CONDITION_PREFERENCES = ""; private SharedPreferences.Editor editor; diff --git a/ios/Plugin/CapacitorUpdaterPlugin.swift b/ios/Plugin/CapacitorUpdaterPlugin.swift index abbe34bf..594a14a7 100644 --- a/ios/Plugin/CapacitorUpdaterPlugin.swift +++ b/ios/Plugin/CapacitorUpdaterPlugin.swift @@ -45,7 +45,7 @@ public class CapacitorUpdaterPlugin: CAPPlugin, CAPBridgedPlugin { CAPPluginMethod(name: "getNextBundle", returnType: CAPPluginReturnPromise) ] public var implementation = CapacitorUpdater() - private let PLUGIN_VERSION: String = "7.0.18" + private let PLUGIN_VERSION: String = "7.0.19" static let updateUrlDefault = "https://plugin.capgo.app/updates" static let statsUrlDefault = "https://plugin.capgo.app/stats" static let channelUrlDefault = "https://plugin.capgo.app/channel_self" diff --git a/package.json b/package.json index 3ece2050..9b062948 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@capgo/capacitor-updater", - "version": "7.0.18", + "version": "7.0.19", "license": "MPL-2.0", "description": "Live update for capacitor apps", "main": "dist/plugin.cjs.js",