Skip to content

Commit 03b5300

Browse files
committed
chore: 🚀 version 0.1.7
1 parent bc44edb commit 03b5300

File tree

6 files changed

+27
-7
lines changed

6 files changed

+27
-7
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
# [](https://github.com/lucafluri/price_tracker/compare/v0.1.6...v) (2020-07-19)
1+
# [](https://github.com/lucafluri/price_tracker/compare/v0.1.7...v) (2021-03-01)
2+
3+
4+
5+
## [0.1.7](https://github.com/lucafluri/price_tracker/compare/v0.1.6...v0.1.7) (2021-03-01)
6+
7+
8+
### Bug Fixes
9+
10+
* :bug: fix under target calculations bug ([921dba2](https://github.com/lucafluri/price_tracker/commit/921dba2aef47bb6150d9eae5c597f78db9caee3a))
11+
* 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)
12+
* setting target price on iOS is possible again ([7ff82ff](https://github.com/lucafluri/price_tracker/commit/7ff82ffbc3407a6d31d607a057b8a2148fc47978))
13+
14+
15+
### Features
16+
17+
* available on iOS Apple TestFlight testing program ([7871b97](https://github.com/lucafluri/price_tracker/commit/7871b9716802659387779bce879d69e85f0f0119))
218

319

420

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if (flutterRoot == null) {
1313

1414
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
1515
if (flutterVersionCode == null) {
16-
flutterVersionCode = '10'
16+
flutterVersionCode = '11'
1717
}
1818

1919
def flutterVersionName = localProperties.getProperty('flutter.versionName')

lib/screens/settings/settings_controller.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import 'package:toast/toast.dart';
1010
import 'package:workmanager/workmanager.dart';
1111

1212
class Settings extends State<SettingsScreen> {
13-
static const String VERSION = "0.1.6";
13+
static const String VERSION = "0.1.7";
1414
static const String APP_NAME = "Price Tracker BETA";
1515

1616
Product testProduct = Product.fromMap({

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1515
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1616
# Read more about iOS versioning at
1717
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18-
version: 0.1.6+3
18+
version: 0.1.7
1919

2020
environment:
2121
sdk: ">=2.7.0 <3.0.0"

release_notes.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Bug fixes:
2+
- Fix under target calculations
3+
- Fix setting target price bug
4+
- Fix scraper selecting wrong price

utils/androidBumpScript.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import re
22
import subprocess
33

4-
VERSION = '0.1.6'
5-
FLUTTER_VERSION_CODE = '10'
4+
VERSION = '0.1.7'
5+
FLUTTER_VERSION_CODE = '11'
66

77
PROJECT_ROOT = "./"
88

@@ -14,7 +14,7 @@ def modFile(path, regex, replace):
1414
file.truncate()
1515

1616
# Modify build.gradle -> bump version code
17-
modFile("android/app/build.gradle", "flutterVersionCode\s[=]\s[']\d[']", "flutterVersionCode = '{}'".format(FLUTTER_VERSION_CODE))
17+
modFile("android/app/build.gradle", "flutterVersionCode\s[=]\s[']\d*[']", "flutterVersionCode = '{}'".format(FLUTTER_VERSION_CODE))
1818

1919

2020
# Modify settings_controller.dart -> bump version

0 commit comments

Comments
 (0)