Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
version bump to 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcos Torres committed Mar 5, 2015
1 parent 3a6edbf commit c3b68a3
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Office 365 SDK for Android #

### Version 0.12.0 ###

* Fixing classpath for javadoc generation
* SDK and test app updated with vipr
* Merge PR #67
* Support for Streamed media entities

### Version 0.11.0 ###

* Cleaned imports
Expand Down
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

[![Build Status](https://travis-ci.org/OfficeDev/Office-365-SDK-for-Android.svg?branch=master)](https://travis-ci.org/OfficeDev/Office-365-SDK-for-Android)

[ ![Download](https://api.bintray.com/packages/msopentech/Maven/Office-365-SDK-for-Android/images/download.svg) ](https://bintray.com/msopentech/Maven/Office-365-SDK-for-Android/_latestVersion)

**Table of Contents**

- [Overview](#overview)
Expand Down Expand Up @@ -31,15 +33,15 @@ Now we'll create a simple application that retrieves messages using this SDK and
```Groovy
dependencies {
// base OData stuff:
compile group: 'com.microsoft.services', name: 'odata-engine-core', version: '0.11.1'
compile group: 'com.microsoft.services', name: 'odata-engine-android-impl', version: '0.11.1', ext:'aar'
compile group: 'com.microsoft.services', name: 'odata-engine-core', version: '0.12.0'
compile group: 'com.microsoft.services', name: 'odata-engine-android-impl', version: '0.12.0', ext:'aar'

// choose the services/SDKs you need:
compile group: 'com.microsoft.services', name: 'outlook-services', version: '0.11.1'
compile group: 'com.microsoft.services', name: 'discovery-services', version: '0.11.1'
compile group: 'com.microsoft.services', name: 'directory-services', version: '0.11.1'
compile group: 'com.microsoft.services', name: 'file-services', version: '0.11.1'
compile group: 'com.microsoft.services', name: 'sharepoint-services', version: '0.11.1', ext:'aar'
compile group: 'com.microsoft.services', name: 'outlook-services', version: '0.12.0'
compile group: 'com.microsoft.services', name: 'discovery-services', version: '0.12.0'
compile group: 'com.microsoft.services', name: 'directory-services', version: '0.12.0'
compile group: 'com.microsoft.services', name: 'file-services', version: '0.12.0'
compile group: 'com.microsoft.services', name: 'sharepoint-services', version: '0.12.0', ext:'aar'
// ADAL
compile (group: 'com.microsoft.aad', name: 'adal', version: '1.0.5') {
Expand Down
4 changes: 2 additions & 2 deletions sdk/android-libraries.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ uploadArchives {
url: 'https://api.bintray.com/maven/msopentech/Maven/Office-365-SDK-for-Android'
) {
authentication(
userName: 'user',
password: 'password'
userName: 'foo',
password: 'bar'
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ allprojects {

apply plugin: 'idea'
group = 'com.microsoft.services'
version = '0.11.1'
version = '0.12.0'
}
4 changes: 2 additions & 2 deletions sdk/java-libraries.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ bintray {

configurations = ['published'] //When uploading configuration files
apiUrl = "https://api.bintray.com"
user = 'user'
key = 'foo'
user = 'foo'
key = 'bar'
dryRun = false

filesSpec {
Expand Down

0 comments on commit c3b68a3

Please sign in to comment.