Skip to content

Commit 21d5945

Browse files
committed
prepare for release v0.4.5
1 parent 7c0e7fd commit 21d5945

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

HISTORY.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ Downloads & Release History
1111
1. Bug Fix: Too many empty chunks are passed to Body filter & some body data lost
1212
1. Enhancement: [Nginx-Jersey] Support jersey application sub class
1313
1. Enhancement: Try to use enviroment variable JAVA_HOME to detect jvm when jvm_path is auto
14+
1. Enhancement: NginxSharedHashMap.keySet/values/entrySet for debug/test usage.
15+
1. Bug Fix: Can not use more than two shared maps.
1416
1. Bug Fix: NullPointerExecption will happen when multiple rewrite handlers are invoked for one request
1517
1. Bug Fix: Can't access ring request data in Sente handler. (content_handler_property fore-prefetch-all-properties true;)
1618
1. Enhancement: Compile against Nginx 1.11 & Nginx 1.12

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Core Features
88
=================
99

10-
The latest release is v0.4.4, more detail changes about it can be found from [Release History](//nginx-clojure.github.io/downloads.html).
10+
The latest release is v0.4.5, more detail changes about it can be found from [Release History](//nginx-clojure.github.io/downloads.html).
1111

1212
1. Compatible with [Ring](https://github.com/ring-clojure/ring/blob/master/SPEC) and obviously supports those Ring based frameworks, such as Compojure etc.
1313
1. Http Services by using Clojure / Java / Groovy to write simple handlers for http services.
@@ -30,7 +30,7 @@ With this feature one java main thread can handle thousands of connections.
3030
1. Long Polling & Server Sent Events
3131
1. Run initialization clojure code when nginx worker starting
3232
1. Support user defined http request method
33-
1. Compatible with the Nginx lastest stable version 1.8.0. (Nginx 1.6.x, 1.4.x is also ok, older version is not tested and maybe works.)
33+
1. Compatible with the Nginx lastest stable version 1.12.0. (Nginx 1.8.x, Nginx 1.6.x, 1.4.x is also ok, older version is not tested and maybe works.)
3434
1. One of benifits of [Nginx](http://nginx.org/) is worker processes are automatically restarted by a master process if they crash
3535
1. Utilizes lazy headers and direct memory operation between [Nginx](http://nginx.org/) and JVM to fast handle dynamic contents from Clojure or Java code.
3636
1. Utilizes [Nginx](http://nginx.org/) zero copy file sending mechanism to fast handle static contents controlled by Clojure or Java code.
@@ -49,19 +49,19 @@ Nginx-Clojure has already been published to https://clojars.org/ whose maven rep
4949
</repository>
5050
```
5151

52-
After adding clojars repository, you can reference nginx-clojure 0.4.4 , e.g.
52+
After adding clojars repository, you can reference nginx-clojure 0.4.5 , e.g.
5353

5454
Leiningen (clojure, no need to add clojars repository which is a default repository for Leiningen)
5555
-----------------
5656

5757
```clojure
58-
[nginx-clojure "0.4.4"]
58+
[nginx-clojure "0.4.5"]
5959
```
6060
Gradle (groovy/java)
6161
-----------------
6262

6363
```
64-
compile "nginx-clojure:nginx-clojure:0.4.4"
64+
compile "nginx-clojure:nginx-clojure:0.4.5"
6565
```
6666
Maven
6767
-----------------
@@ -70,7 +70,7 @@ Maven
7070
<dependency>
7171
<groupId>nginx-clojure</groupId>
7272
<artifactId>nginx-clojure</artifactId>
73-
<version>0.4.4</version>
73+
<version>0.4.5</version>
7474
</dependency>
7575
```
7676

0 commit comments

Comments
 (0)