Skip to content

Commit ef3d71d

Browse files
committed
v1.0.1
1 parent 87804a5 commit ef3d71d

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88

99
## [unreleased] yyyy-mm-dd
1010

11+
## [1.0.1] 2018-07-24
12+
### Added
13+
- Json helper methods in [`HttpRequest`](src/main/java/com/github/whileloop/rest4j/HttpRequest.java)
14+
- Json helper methods in [`HttpResponse`](src/main/java/com/github/whileloop/rest4j/HttpResponse.java)
15+
16+
### Changed
17+
- Path params from `{param}` to `:param`
18+
- Router impl test to integration package in tests
19+
1120

1221
## [1.0.0] 2018-03-20
1322
### Added
1423
- Initial Release
1524

1625
[1.0.0]: https://github.com/while-loop/rest4j/releases/tag/v1.0.0
1726
[1.0.1]: https://github.com/while-loop/rest4j/compare/v1.0.0...v1.0.1
18-
[unreleased]: https://github.com/while-loop/rest4j/compare/v1.0.0...master
27+
[1.0.2]: https://github.com/while-loop/rest4j/compare/v1.0.1...v1.0.2
28+
[unreleased]: https://github.com/while-loop/rest4j/compare/v1.0.1...master
1929

2030
[comment]: # (Added, Changed, Removed)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Download
2727
#### Gradle
2828
```gradle
2929
dependencies {
30-
compile 'com.github.while-loop:rest4j:1.0.0'
30+
compile 'com.github.while-loop:rest4j:1.0.1'
3131
}
3232
```
3333

@@ -36,7 +36,7 @@ dependencies {
3636
<dependency>
3737
<groupId>com.github.while-loop</groupId>
3838
<artifactId>rest4j</artifactId>
39-
<version>1.0.0</version>
39+
<version>1.0.1</version>
4040
</dependency>
4141
```
4242

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.while-loop</groupId>
88
<artifactId>rest4j</artifactId>
9-
<version>1.0.1-SNAPSHOT</version>
9+
<version>1.0.1</version>
1010

1111
<developers>
1212
<developer>

0 commit comments

Comments
 (0)