From c3336c85b8ae59a4bbea5cf02f94b61314e12030 Mon Sep 17 00:00:00 2001 From: Nipun Singh <88689850+nsingh-branch@users.noreply.github.com> Date: Thu, 11 Jul 2024 16:29:37 -0700 Subject: [PATCH] [SDK-2469] Release 8.1.0 (#164) Updated version number and changelog --- CHANGELOG.md | 4 ++++ ios/Plugin/Plugin.swift | 2 +- package.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3b62f0..81e8bea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ Branch Capacitor SDK change log +- 8.1.0 + + - Added the handleUrl method to iOS and updated BranchUrlParams to include `branch` instead of `url`. + - 8.0.0 - Updated the `addListener` method to return a `Promise`. diff --git a/ios/Plugin/Plugin.swift b/ios/Plugin/Plugin.swift index 9128b4d..4a42817 100644 --- a/ios/Plugin/Plugin.swift +++ b/ios/Plugin/Plugin.swift @@ -16,7 +16,7 @@ public class BranchDeepLinks: CAPPlugin { object: nil ) - Branch.getInstance().registerPluginName("Capacitor", version: "8.0.0") + Branch.getInstance().registerPluginName("Capacitor", version: "8.1.0") } @objc public func setBranchService(branchService: Any) { diff --git a/package.json b/package.json index 5c37646..02a63bb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "capacitor-branch-deep-links", - "version": "8.0.0", + "version": "8.1.0", "description": "Capacitor plugin for Branch.io deep links", "main": "dist/plugin.cjs.js", "module": "dist/esm/index.js",