From 03b530062e793a03460d8c194ce2e83086c4f07c Mon Sep 17 00:00:00 2001 From: Luca Fluri Date: Mon, 1 Mar 2021 11:26:11 +0100 Subject: [PATCH] chore: :rocket: version 0.1.7 --- CHANGELOG.md | 18 +++++++++++++++++- android/app/build.gradle | 2 +- lib/screens/settings/settings_controller.dart | 2 +- pubspec.yaml | 2 +- release_notes.txt | 4 ++++ utils/androidBumpScript.py | 6 +++--- 6 files changed, 27 insertions(+), 7 deletions(-) create mode 100644 release_notes.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index af57bad..1620770 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,20 @@ -# [](https://github.com/lucafluri/price_tracker/compare/v0.1.6...v) (2020-07-19) +# [](https://github.com/lucafluri/price_tracker/compare/v0.1.7...v) (2021-03-01) + + + +## [0.1.7](https://github.com/lucafluri/price_tracker/compare/v0.1.6...v0.1.7) (2021-03-01) + + +### Bug Fixes + +* :bug: fix under target calculations bug ([921dba2](https://github.com/lucafluri/price_tracker/commit/921dba2aef47bb6150d9eae5c597f78db9caee3a)) +* new prop favorXPath in parser_configuration ([61a0728](https://github.com/lucafluri/price_tracker/commit/61a0728335ed4090b1ebe522adfd7209ce8e0262)), closes [#55](https://github.com/lucafluri/price_tracker/issues/55) +* setting target price on iOS is possible again ([7ff82ff](https://github.com/lucafluri/price_tracker/commit/7ff82ffbc3407a6d31d607a057b8a2148fc47978)) + + +### Features + +* available on iOS Apple TestFlight testing program ([7871b97](https://github.com/lucafluri/price_tracker/commit/7871b9716802659387779bce879d69e85f0f0119)) diff --git a/android/app/build.gradle b/android/app/build.gradle index 1e4cea8..2bf6733 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -13,7 +13,7 @@ if (flutterRoot == null) { def flutterVersionCode = localProperties.getProperty('flutter.versionCode') if (flutterVersionCode == null) { - flutterVersionCode = '10' + flutterVersionCode = '11' } def flutterVersionName = localProperties.getProperty('flutter.versionName') diff --git a/lib/screens/settings/settings_controller.dart b/lib/screens/settings/settings_controller.dart index 4cac05e..a7694c0 100644 --- a/lib/screens/settings/settings_controller.dart +++ b/lib/screens/settings/settings_controller.dart @@ -10,7 +10,7 @@ import 'package:toast/toast.dart'; import 'package:workmanager/workmanager.dart'; class Settings extends State { - static const String VERSION = "0.1.6"; + static const String VERSION = "0.1.7"; static const String APP_NAME = "Price Tracker BETA"; Product testProduct = Product.fromMap({ diff --git a/pubspec.yaml b/pubspec.yaml index 2547d32..aa0c30e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 0.1.6+3 +version: 0.1.7 environment: sdk: ">=2.7.0 <3.0.0" diff --git a/release_notes.txt b/release_notes.txt new file mode 100644 index 0000000..77cad1b --- /dev/null +++ b/release_notes.txt @@ -0,0 +1,4 @@ +Bug fixes: +- Fix under target calculations +- Fix setting target price bug +- Fix scraper selecting wrong price \ No newline at end of file diff --git a/utils/androidBumpScript.py b/utils/androidBumpScript.py index a81cbb5..9ca0ca7 100644 --- a/utils/androidBumpScript.py +++ b/utils/androidBumpScript.py @@ -1,8 +1,8 @@ import re import subprocess -VERSION = '0.1.6' -FLUTTER_VERSION_CODE = '10' +VERSION = '0.1.7' +FLUTTER_VERSION_CODE = '11' PROJECT_ROOT = "./" @@ -14,7 +14,7 @@ def modFile(path, regex, replace): file.truncate() # Modify build.gradle -> bump version code -modFile("android/app/build.gradle", "flutterVersionCode\s[=]\s[']\d[']", "flutterVersionCode = '{}'".format(FLUTTER_VERSION_CODE)) +modFile("android/app/build.gradle", "flutterVersionCode\s[=]\s[']\d*[']", "flutterVersionCode = '{}'".format(FLUTTER_VERSION_CODE)) # Modify settings_controller.dart -> bump version