Skip to content

Commit

Permalink
chore: 🚀 version 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lucafluri committed Mar 1, 2021
1 parent bc44edb commit 03b5300
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 7 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))



Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/settings/settings_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import 'package:toast/toast.dart';
import 'package:workmanager/workmanager.dart';

class Settings extends State<SettingsScreen> {
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({
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 4 additions & 0 deletions release_notes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Bug fixes:
- Fix under target calculations
- Fix setting target price bug
- Fix scraper selecting wrong price
6 changes: 3 additions & 3 deletions utils/androidBumpScript.py
Original file line number Diff line number Diff line change
@@ -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 = "./"

Expand All @@ -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
Expand Down

0 comments on commit 03b5300

Please sign in to comment.