diff --git a/CHANGELOG.md b/CHANGELOG.md index b410b07ad..6ae916316 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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). +## 0.7.1 - 2020-11-13 + +### Fixed + +- No response on clicking Ignore button the on inbox page. #184 +- The copy button of the media ID on the asset page only copy "mid-here" string to the clipboard. #185 +- The operations in `Plugin.BackgroundTask` from Capacitor is running outside of `ngZone`, which causes the change detection fails. #186, #187 + ## 0.7.0 - 2020-11-12 ### Added diff --git a/android/app/build.gradle b/android/app/build.gradle index 626cc6002..fdb1daab1 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -6,8 +6,8 @@ android { applicationId "io.numbersprotocol.capturelite" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 35 - versionName "0.7.0" + versionCode 36 + versionName "0.7.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { diff --git a/package-lock.json b/package-lock.json index 9ac324148..8857c1b8a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "capture-lite", - "version": "0.7.0", + "version": "0.7.1", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -14472,4 +14472,4 @@ "integrity": "sha512-LXVLVEq0NNOqK/fLJo3d0kfzd4sxwn2/h67/02pjCjfKDxgx1i9QqpvtHD8CrBnSSwMw5+dy11O7FRX5mkO7Cg==" } } -} \ No newline at end of file +} diff --git a/package.json b/package.json index c5c46644f..4d2cc79e1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "capture-lite", - "version": "0.7.0", + "version": "0.7.1", "author": "numbersprotocol", "homepage": "https://numbersprotocol.io/", "scripts": { @@ -67,4 +67,4 @@ "typescript": "~3.9.7" }, "description": "Capture lite app." -} \ No newline at end of file +}