Skip to content

Commit

Permalink
Add changelog. Update version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Richelson committed Nov 17, 2016
1 parent 5c15851 commit ba16553
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Change log


All notable changes to the LaunchDarkly Android SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).

## [1.0.1] - 2016-11-17
### Added
- Suggested Proguard rules now include keep instructions. This should help with some GSON serialization issues.
- Log when GSON serialization problem may be occuring.

### Changed
- Updated GSON and okhttp-eventsource dependencies

## [1.0.0] - 2016-09-29
- First release of Android SDK.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# Prerelease LaunchDarkly Android SDK
This library is compatible with Android SDK versions 15 and up (4.0.3 Ice Cream Sandwich)

NOTE: This is an early build and should not be used in production!



How to use:
Check out the included example app, or follow things here:
Expand All @@ -16,7 +13,7 @@ Check out the included example app, or follow things here:
1. Declare this dependency:

```
compile 'com.launchdarkly:launchdarkly-android-client:1.0.0'
compile 'com.launchdarkly:launchdarkly-android-client:1.0.1'
```
1. In your application configure and initialize the client:

Expand Down
2 changes: 1 addition & 1 deletion example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ dependencies {
compile 'com.android.support:appcompat-v7:24.1.1'
compile project(path: ':launchdarkly-android-client')
// Comment the previous line and uncomment this one to depend on the published artifact:
// compile 'com.launchdarkly:launchdarkly-android-client:1.0.0'
// compile 'com.launchdarkly:launchdarkly-android-client:1.0.1'
}
2 changes: 1 addition & 1 deletion launchdarkly-android-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'org.ajoberstar.github-pages'

allprojects {
group = 'com.launchdarkly'
version = '1.0.1-SNAPSHOT'
version = '1.0.1'
sourceCompatibility = 1.7
targetCompatibility = 1.7
}
Expand Down

0 comments on commit ba16553

Please sign in to comment.