Skip to content
This repository has been archived by the owner on Nov 8, 2021. It is now read-only.

Commit

Permalink
release version 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tuhuynh27 committed Oct 6, 2020
1 parent 66e805c commit cfe0783
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group 'com.jinyframework'
version '0.2.4'
version '0.2.5'

sourceCompatibility = 1.8

Expand Down
4 changes: 2 additions & 2 deletions docs/src/guide/apis/renderer.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ You can also set a global custom response, which will be applied for all handler
```java
import com.google.gson.Gson;

val server = HttpServer.port(1234);
server.setupResponseTransformer(gson::toJson);
val server = HttpServer.port(1234)
.useTransformer(gson::toJson);
```

## Template Engine
Expand Down
8 changes: 7 additions & 1 deletion docs/src/guide/changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

![Maven Central](https://img.shields.io/maven-central/v/com.jinyframework/jiny?style=flat-square)

### 0.2.4 (Current)
### 0.2.5 (Current)

- Add Keep-Alive support
- Add Thread Debug mode
- Refactor code

### 0.2.4

- Add NPE handled methods
- Fix HTTP client issue
Expand Down
4 changes: 2 additions & 2 deletions docs/src/guide/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ And then you have a Gradle build template with `build.gradle` file

```groovy
dependencies {
compile group: 'com.jinyframework', name: 'jiny', version: '0.2.4'
compile group: 'com.jinyframework', name: 'jiny', version: '0.2.5'
}
```

Expand All @@ -32,6 +32,6 @@ dependencies {
<dependency>
<groupId>com.jinyframework</groupId>
<artifactId>jiny</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
</dependency>
```
1 change: 1 addition & 0 deletions docs/src/guide/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- [x] Write unit tests, integration tests
- [x] Support Router, global response transformer
- [x] Add logging facade
- [x] Add Keep-Alive support
- [ ] Add websocket server/client support
- [ ] Support CORS config, body compression and some default middlewares
- [ ] Support serve static files
Expand Down

0 comments on commit cfe0783

Please sign in to comment.