Skip to content

Commit 0d868d3

Browse files
committed
v2.0.1
1 parent f4edc89 commit 0d868d3

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
44

5+
## [2.0.1] - 2018-10-09
6+
### Fixed
7+
- Fix error in build.gradle
8+
59
## [2.0.0] - 2018-10-09
610

711
This is the first version for Gradle 4.4

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def getPackageVersion() {
77
}
88

99
def getExtValue(prop, fallback) {
10-
rootProject.ext.hasProperty(prop) ? rootProject.ext.get(prop) : fallback
10+
return rootProject.ext.hasProperty(prop) ? rootProject.ext.get(prop) : fallback
1111
}
1212

1313
def _buildToolsVersion = getExtValue('buildToolsVersion', '27.0.3')

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-cross-settings",
33
"description": "React Native `Settings` module for both Android & iOS.",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"license": "MIT",
66
"main": "./index.js",
77
"typings": "./index.d.ts",

0 commit comments

Comments
 (0)