From ad04696a8fcf581686c22728a3c6374a6dcd0098 Mon Sep 17 00:00:00 2001 From: Tu Huynh Date: Tue, 1 Dec 2020 15:21:19 +0700 Subject: [PATCH] release 0.3.3 --- build.gradle | 2 +- docs/src/guide/changelogs.md | 8 +++++++- docs/src/guide/install.md | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index eac8717..83fc589 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ subprojects { apply plugin: 'maven-publish' group 'com.jinyframework' - version '0.3.2' + version '0.3.3' repositories { mavenCentral() diff --git a/docs/src/guide/changelogs.md b/docs/src/guide/changelogs.md index d83f846..0de333f 100644 --- a/docs/src/guide/changelogs.md +++ b/docs/src/guide/changelogs.md @@ -2,7 +2,13 @@ ![Maven Central](https://img.shields.io/maven-central/v/com.jinyframework/core?style=flat-square) -### 0.3.2 (Current) +### 0.3.3 (Current) + +- Fix path parsing (respect casing) +- Support custom thread pool for worker threads +- Jiny CLI + +### 0.3.2 - Implement JWT Middleware - Split middleware packages into dedicated jars (and subProject) diff --git a/docs/src/guide/install.md b/docs/src/guide/install.md index beadeee..523ee67 100644 --- a/docs/src/guide/install.md +++ b/docs/src/guide/install.md @@ -52,7 +52,7 @@ And then you have a Gradle build template with `build.gradle` file in your proje ```groovy dependencies { - compile group: 'com.jinyframework', name: 'core', version: '0.3.2' + compile group: 'com.jinyframework', name: 'core', version: '0.3.3' } ``` @@ -64,6 +64,6 @@ dependencies { com.jinyframework core - 0.3.2 + 0.3.3 ```