Skip to content

Commit 560ddbe

Browse files
authored
Bump version to 2.0.1 (#22)
1 parent 150e69a commit 560ddbe

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 2.0.1 *(2019-11-18)*
2+
----------------------------
3+
* Fixed a bug that prevented promo codes from being applied to the Lyft Button.
4+
15
Version 2.0.0 *(2019-07-12)*
26
----------------------------
37
* Update Gradle version from `2.14.1` to `4.10.1`, and Android Gradle Plugin from `2.2.2` to `3.3.2`

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,22 @@ repositories {
1919
}
2020
2121
dependencies {
22-
compile 'com.lyft:lyft-android-sdk:2.0.0'
22+
compile 'com.lyft:lyft-android-sdk:2.0.1'
2323
}
2424
```
2525

2626
If you only want to use the [Lyft API Wrapper](https://github.com/lyft/lyft-android-sdk#lyft-api-wrapper) or [Deeplink](https://github.com/lyft/lyft-android-sdk#deeplinking) portion of the SDK, you can pull them individually.
2727
```gradle
28-
compile 'com.lyft:lyft-android-sdk-networking:2.0.0' // Lyft API Wrapper
29-
compile 'com.lyft:lyft-android-sdk-deeplink:2.0.0' // Deeplink
28+
compile 'com.lyft:lyft-android-sdk-networking:2.0.1' // Lyft API Wrapper
29+
compile 'com.lyft:lyft-android-sdk-deeplink:2.0.1' // Deeplink
3030
```
3131

3232
### Maven:
3333
```xml
3434
<dependency>
3535
<groupId>com.lyft</groupId>
3636
<artifactId>lyft-android-sdk</artifactId>
37-
<version>2.0.0</version>
37+
<version>2.0.1</version>
3838
<type>aar</type>
3939
</dependency>
4040
```

deeplink/src/main/java/com/lyft/deeplink/DeepLink.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
public class DeepLink {
1010

1111
private static final String LYFT_PACKAGE_NAME = "me.lyft.android";
12-
private static final String SDK_VERSION = "2.0.0";
12+
private static final String SDK_VERSION = "2.0.1";
1313

1414
/**
1515
* @return true if Lyft app is installed on the device.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.lyft
2-
VERSION_NAME=2.0.0
2+
VERSION_NAME=2.0.1
33

44
POM_DESCRIPTION=Lyft Android SDK
55

0 commit comments

Comments
 (0)