Skip to content

Commit 1dc3d72

Browse files
committed
Next development iteration
1 parent f556e29 commit 1dc3d72

3 files changed

Lines changed: 29 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11
# Change Log
22

3-
## [0.1.0](https://github.com/auth0/auth0-api-java/tree/0.1.0) (2016-03-18)
3+
## [0.1.1](https://github.com/auth0/auth0-java/tree/0.1.1) (2016-03-18)
4+
[Full Changelog](https://github.com/auth0/auth0-java/compare/0.1.0...0.1.1)
5+
6+
**Merged pull requests:**
7+
8+
- Make SignUpRequest an AuthenticationRequest [\#17](https://github.com/auth0/auth0-java/pull/17) ([hzalaz](https://github.com/hzalaz))
9+
10+
## [0.1.0](https://github.com/auth0/auth0-java/tree/0.1.0) (2016-03-18)
411
**Merged pull requests:**
512

6-
- Provide access to the ParameterBuilder inside every request [\#15](https://github.com/auth0/auth0-api-java/pull/15) ([lbalmaceda](https://github.com/lbalmaceda))
7-
- let UserProfile implement Serializable [\#13](https://github.com/auth0/auth0-api-java/pull/13) ([lbalmaceda](https://github.com/lbalmaceda))
8-
- Change package structure and introduced new way to include metrics [\#7](https://github.com/auth0/auth0-api-java/pull/7) ([hzalaz](https://github.com/hzalaz))
9-
- Remove everything related to Application [\#6](https://github.com/auth0/auth0-api-java/pull/6) ([nikolaseu](https://github.com/nikolaseu))
10-
- Avoid using magic string [\#5](https://github.com/auth0/auth0-api-java/pull/5) ([hzalaz](https://github.com/hzalaz))
11-
- Travis CI integration [\#4](https://github.com/auth0/auth0-api-java/pull/4) ([lbalmaceda](https://github.com/lbalmaceda))
12-
- Add sync \(blocking\) mode to all requests [\#3](https://github.com/auth0/auth0-api-java/pull/3) ([nikolaseu](https://github.com/nikolaseu))
13-
- Authentication api [\#1](https://github.com/auth0/auth0-api-java/pull/1) ([nikolaseu](https://github.com/nikolaseu))
13+
- Provide access to the ParameterBuilder inside every request [\#15](https://github.com/auth0/auth0-java/pull/15) ([lbalmaceda](https://github.com/lbalmaceda))
14+
- let UserProfile implement Serializable [\#13](https://github.com/auth0/auth0-java/pull/13) ([lbalmaceda](https://github.com/lbalmaceda))
15+
- Change package structure and introduced new way to include metrics [\#7](https://github.com/auth0/auth0-java/pull/7) ([hzalaz](https://github.com/hzalaz))
16+
- Remove everything related to Application [\#6](https://github.com/auth0/auth0-java/pull/6) ([nikolaseu](https://github.com/nikolaseu))
17+
- Avoid using magic string [\#5](https://github.com/auth0/auth0-java/pull/5) ([hzalaz](https://github.com/hzalaz))
18+
- Travis CI integration [\#4](https://github.com/auth0/auth0-java/pull/4) ([lbalmaceda](https://github.com/lbalmaceda))
19+
- Add sync \(blocking\) mode to all requests [\#3](https://github.com/auth0/auth0-java/pull/3) ([nikolaseu](https://github.com/nikolaseu))
20+
- Authentication api [\#1](https://github.com/auth0/auth0-java/pull/1) ([nikolaseu](https://github.com/nikolaseu))
1421

1522

1623

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Auth0 Java
22

3-
[![Build status][travis-ci-badge]](travis-ci-url)
3+
[![Build][travis-ci-badge]][travis-ci-url]
4+
[![MIT][mit-badge]][mit-url]
5+
[![Maven][maven-badge]][maven-url]
6+
[![JCenter][jcenter-badge]][jcenter-url]
47

58
Java client library for the [Auth0](https://auth0.com) platform.
69

@@ -121,5 +124,11 @@ This project is licensed under the MIT license. See the [LICENSE](LICENSE) file
121124

122125
<!-- Vars -->
123126

124-
[travis-ci-badge]: https://travis-ci.org/auth0/auth0-api-java.svg?branch=master
125-
[tavis-ci-url]: https://travis-ci.org/auth0/auth0-api-java
127+
[travis-ci-badge]: https://travis-ci.org/auth0/auth0-java.svg?branch=master
128+
[travis-ci-url]: https://travis-ci.org/auth0/auth0-java
129+
[mit-badge]: http://img.shields.io/:license-mit-blue.svg?style=flat
130+
[mit-url]: https://raw.githubusercontent.com/auth0/auth0-java/master/LICENSE
131+
[maven-badge]: https://img.shields.io/maven-central/v/com.auth0/auth0.svg
132+
[maven-url]: http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.auth0%22%20AND%20a%3A%22auth0%22
133+
[jcenter-badge]: https://api.bintray.com/packages/auth0/lock-android/auth0/images/download.svg
134+
[jcenter-url]: https://bintray.com/auth0/lock-android/auth0/_latestVersion

auth0/src/main/java/com/auth0/BuildConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ private BuildConfig() {}
77
/**
88
* Version of auth0-java
99
*/
10-
public static final String VERSION = "0.1.1";
10+
public static final String VERSION = "0.2.0-SNAPSHOT";
1111
/**
1212
* Name of the library auth0-java
1313
*/

0 commit comments

Comments
 (0)