Skip to content

Commit b611f11

Browse files
committed
fix version and copyright year
1 parent f4a62cf commit b611f11

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

CoreFeatures.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Core Features
22
=================
33

4-
The latest release is v0.5.1, more detail changes about it can be found from [Release History](//nginx-clojure.github.io/downloads.html).
4+
The latest release is v0.5.2, more detail changes about it can be found from [Release History](//nginx-clojure.github.io/downloads.html).
55

66
1. Compatible with [Ring](https://github.com/ring-clojure/ring/blob/master/SPEC) and obviously supports those Ring based frameworks, such as Compojure etc.
77
1. Http Services by using Clojure / Java / Groovy to write simple handlers for http services.
88
1. Nginx Access Handler by Clojure / Java / Groovy
99
1. Nginx Header Filter by Clojure / Java / Groovy
1010
1. Nginx Body Filter by Clojure / Java / Groovy
1111
1. **_NEW_**: Nginx Log Handler by Clojure / Java / Groovy
12-
1. **_NEW_**: HTTP V2 support in both standard edition and embedded edition which are compiled against Nginx 1.14.2
12+
1. **_NEW_**: HTTP V2 support in both standard edition and embedded edition which are compiled against Nginx 1.18.0
1313
1. **_NEW_**: Support Java 9, 10, 11, 12
1414
1. Pub/Sub Among Nginx Worker Processes
1515
1. Shared Map based on shared memory & Shared Map based Ring session store
@@ -27,7 +27,7 @@ With this feature one java main thread can handle thousands of connections.
2727
1. Long Polling & Server Sent Events
2828
1. Run initialization clojure code when nginx worker starting
2929
1. Support user defined http request method
30-
1. Compatible with the Nginx lastest most stable version 1.14.2. (Nginx 1.12.x, 1.8.x, 1.6.x, 1.4.x is also ok, older version is not tested and maybe works.)
30+
1. Compatible with the Nginx lastest most stable version 1.18.0. (Nginx 1.14.x, 1.12.x, 1.8.x, 1.6.x, 1.4.x is also ok, older version is not tested and maybe works.)
3131
1. One of benifits of [Nginx](http://nginx.org/) is worker processes are automatically restarted by a master process if they crash
3232
1. Utilize lazy headers and direct memory operation between [Nginx](http://nginx.org/) and JVM to fast handle dynamic contents from Clojure or Java code.
3333
1. Utilize [Nginx](http://nginx.org/) zero copy file sending mechanism to fast handle static contents controlled by Clojure or Java code.
@@ -47,19 +47,19 @@ Nginx-Clojure has already been published to https://clojars.org/ whose maven rep
4747
</repository>
4848
```
4949

50-
After adding clojars repository, you can reference nginx-clojure 0.5.1 , e.g.
50+
After adding clojars repository, you can reference nginx-clojure 0.5.2 , e.g.
5151

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

5555
```clojure
56-
[nginx-clojure "0.5.1"]
56+
[nginx-clojure "0.5.2"]
5757
```
5858
Gradle (groovy/java)
5959
-----------------
6060

6161
```
62-
compile "nginx-clojure:nginx-clojure:0.5.1"
62+
compile "nginx-clojure:nginx-clojure:0.5.2"
6363
```
6464
Maven
6565
-----------------
@@ -68,7 +68,7 @@ Maven
6868
<dependency>
6969
<groupId>nginx-clojure</groupId>
7070
<artifactId>nginx-clojure</artifactId>
71-
<version>0.5.1</version>
71+
<version>0.5.2</version>
7272
</dependency>
7373
```
7474

@@ -80,7 +80,7 @@ More Documents can be found from its web site [nginx-clojure.github.io](http://n
8080

8181
License
8282
=================
83-
Copyright © 2013-2019 Zhang, Yuexiang (xfeep) and released under the BSD 3-Clause license.
83+
Copyright © 2013-2020 Zhang, Yuexiang (xfeep) and released under the BSD 3-Clause license.
8484

8585
This program uses:
8686
* Re-rooted ASM bytecode engineering library which is distributed under the BSD 3-Clause license

CoreFeatures.md.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1>
22
<a id="user-content-core-features" class="anchor" href="#core-features" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Core Features</h1>
3-
<p>The latest release is v0.5.1, more detail changes about it can be found from <a href="//nginx-clojure.github.io/downloads.html" rel="nofollow">Release History</a>.</p>
3+
<p>The latest release is v0.5.2, more detail changes about it can be found from <a href="//nginx-clojure.github.io/downloads.html" rel="nofollow">Release History</a>.</p>
44
<ol>
55
<li>Compatible with <a href="https://github.com/ring-clojure/ring/blob/master/SPEC">Ring</a> and obviously supports those Ring based frameworks, such as Compojure etc.</li>
66
<li>Http Services by using Clojure / Java / Groovy to write simple handlers for http services.</li>
@@ -10,7 +10,7 @@ <h1>
1010
<li>
1111
<strong><em>NEW</em></strong>: Nginx Log Handler by Clojure / Java / Groovy</li>
1212
<li>
13-
<strong><em>NEW</em></strong>: HTTP V2 support in both standard edition and embedded edition which are compiled against Nginx 1.14.2</li>
13+
<strong><em>NEW</em></strong>: HTTP V2 support in both standard edition and embedded edition which are compiled against Nginx 1.18.0</li>
1414
<li>
1515
<strong><em>NEW</em></strong>: Support Java 9, 10, 11, 12</li>
1616
<li>Pub/Sub Among Nginx Worker Processes</li>
@@ -30,7 +30,7 @@ <h1>
3030
<li>Long Polling &amp; Server Sent Events</li>
3131
<li>Run initialization clojure code when nginx worker starting</li>
3232
<li>Support user defined http request method</li>
33-
<li>Compatible with the Nginx lastest most stable version 1.14.2. (Nginx 1.12.x, 1.8.x, 1.6.x, 1.4.x is also ok, older version is not tested and maybe works.)</li>
33+
<li>Compatible with the Nginx lastest most stable version 1.18.0. (Nginx 1.14.x, 1.12.x, 1.8.x, 1.6.x, 1.4.x is also ok, older version is not tested and maybe works.)</li>
3434
<li>One of benifits of <a href="http://nginx.org/" rel="nofollow">Nginx</a> is worker processes are automatically restarted by a master process if they crash</li>
3535
<li>Utilize lazy headers and direct memory operation between <a href="http://nginx.org/" rel="nofollow">Nginx</a> and JVM to fast handle dynamic contents from Clojure or Java code.</li>
3636
<li>Utilize <a href="http://nginx.org/" rel="nofollow">Nginx</a> zero copy file sending mechanism to fast handle static contents controlled by Clojure or Java code.</li>
@@ -44,27 +44,27 @@ <h1>
4444
&lt;<span class="pl-ent">id</span>&gt;clojars.org&lt;/<span class="pl-ent">id</span>&gt;
4545
&lt;<span class="pl-ent">url</span>&gt;http://clojars.org/repo&lt;/<span class="pl-ent">url</span>&gt;
4646
&lt;/<span class="pl-ent">repository</span>&gt;</pre></div>
47-
<p>After adding clojars repository, you can reference nginx-clojure 0.5.1 , e.g.</p>
47+
<p>After adding clojars repository, you can reference nginx-clojure 0.5.2 , e.g.</p>
4848
<h2>
4949
<a id="user-content-leiningen-clojure-no-need-to-add-clojars-repository-which-is-a-default-repository-for-leiningen" class="anchor" href="#leiningen-clojure-no-need-to-add-clojars-repository-which-is-a-default-repository-for-leiningen" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Leiningen (clojure, no need to add clojars repository which is a default repository for Leiningen)</h2>
50-
<div class="highlight highlight-source-clojure"><pre>[nginx-clojure <span class="pl-s"><span class="pl-pds">"</span>0.5.1<span class="pl-pds">"</span></span>]</pre></div>
50+
<div class="highlight highlight-source-clojure"><pre>[nginx-clojure <span class="pl-s"><span class="pl-pds">"</span>0.5.2<span class="pl-pds">"</span></span>]</pre></div>
5151
<h2>
5252
<a id="user-content-gradle-groovyjava" class="anchor" href="#gradle-groovyjava" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Gradle (groovy/java)</h2>
53-
<pre><code>compile "nginx-clojure:nginx-clojure:0.5.1"
53+
<pre><code>compile "nginx-clojure:nginx-clojure:0.5.2"
5454
</code></pre>
5555
<h2>
5656
<a id="user-content-maven" class="anchor" href="#maven" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Maven</h2>
5757
<div class="highlight highlight-text-xml"><pre>&lt;<span class="pl-ent">dependency</span>&gt;
5858
&lt;<span class="pl-ent">groupId</span>&gt;nginx-clojure&lt;/<span class="pl-ent">groupId</span>&gt;
5959
&lt;<span class="pl-ent">artifactId</span>&gt;nginx-clojure&lt;/<span class="pl-ent">artifactId</span>&gt;
60-
&lt;<span class="pl-ent">version</span>&gt;0.5.1&lt;/<span class="pl-ent">version</span>&gt;
60+
&lt;<span class="pl-ent">version</span>&gt;0.5.2&lt;/<span class="pl-ent">version</span>&gt;
6161
&lt;/<span class="pl-ent">dependency</span>&gt;</pre></div>
6262
<h1>
6363
<a id="user-content-more-documents" class="anchor" href="#more-documents" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>More Documents</h1>
6464
<p>More Documents can be found from its web site <a href="http://nginx-clojure.github.io/" rel="nofollow">nginx-clojure.github.io</a></p>
6565
<h1>
6666
<a id="user-content-license" class="anchor" href="#license" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>License</h1>
67-
<p>Copyright © 2013-2019 Zhang, Yuexiang (xfeep) and released under the BSD 3-Clause license.</p>
67+
<p>Copyright © 2013-2020 Zhang, Yuexiang (xfeep) and released under the BSD 3-Clause license.</p>
6868
<p>This program uses:</p>
6969
<ul>
7070
<li>Re-rooted ASM bytecode engineering library which is distributed under the BSD 3-Clause license</li>

index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ <h6 id="project_tagline">Nginx module for embedding Clojure / Java / Groovy prog
102102
<section id="main_content" class="inner">
103103
<h1>
104104
<a id="user-content-core-features" class="anchor" href="#core-features" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Core Features</h1>
105-
<p>The latest release is v0.5.1, more detail changes about it can be found from <a href="//nginx-clojure.github.io/downloads.html" rel="nofollow">Release History</a>.</p>
105+
<p>The latest release is v0.5.2, more detail changes about it can be found from <a href="//nginx-clojure.github.io/downloads.html" rel="nofollow">Release History</a>.</p>
106106
<ol>
107107
<li>Compatible with <a href="https://github.com/ring-clojure/ring/blob/master/SPEC">Ring</a> and obviously supports those Ring based frameworks, such as Compojure etc.</li>
108108
<li>Http Services by using Clojure / Java / Groovy to write simple handlers for http services.</li>
@@ -112,7 +112,7 @@ <h1>
112112
<li>
113113
<strong><em>NEW</em></strong>: Nginx Log Handler by Clojure / Java / Groovy</li>
114114
<li>
115-
<strong><em>NEW</em></strong>: HTTP V2 support in both standard edition and embedded edition which are compiled against Nginx 1.14.2</li>
115+
<strong><em>NEW</em></strong>: HTTP V2 support in both standard edition and embedded edition which are compiled against Nginx 1.18.0</li>
116116
<li>
117117
<strong><em>NEW</em></strong>: Support Java 9, 10, 11, 12</li>
118118
<li>Pub/Sub Among Nginx Worker Processes</li>
@@ -132,7 +132,7 @@ <h1>
132132
<li>Long Polling &amp; Server Sent Events</li>
133133
<li>Run initialization clojure code when nginx worker starting</li>
134134
<li>Support user defined http request method</li>
135-
<li>Compatible with the Nginx lastest most stable version 1.14.2. (Nginx 1.12.x, 1.8.x, 1.6.x, 1.4.x is also ok, older version is not tested and maybe works.)</li>
135+
<li>Compatible with the Nginx lastest most stable version 1.18.0. (Nginx 1.14.x, 1.12.x, 1.8.x, 1.6.x, 1.4.x is also ok, older version is not tested and maybe works.)</li>
136136
<li>One of benifits of <a href="http://nginx.org/" rel="nofollow">Nginx</a> is worker processes are automatically restarted by a master process if they crash</li>
137137
<li>Utilize lazy headers and direct memory operation between <a href="http://nginx.org/" rel="nofollow">Nginx</a> and JVM to fast handle dynamic contents from Clojure or Java code.</li>
138138
<li>Utilize <a href="http://nginx.org/" rel="nofollow">Nginx</a> zero copy file sending mechanism to fast handle static contents controlled by Clojure or Java code.</li>
@@ -146,27 +146,27 @@ <h1>
146146
&lt;<span class="pl-ent">id</span>&gt;clojars.org&lt;/<span class="pl-ent">id</span>&gt;
147147
&lt;<span class="pl-ent">url</span>&gt;http://clojars.org/repo&lt;/<span class="pl-ent">url</span>&gt;
148148
&lt;/<span class="pl-ent">repository</span>&gt;</pre></div>
149-
<p>After adding clojars repository, you can reference nginx-clojure 0.5.1 , e.g.</p>
149+
<p>After adding clojars repository, you can reference nginx-clojure 0.5.2 , e.g.</p>
150150
<h2>
151151
<a id="user-content-leiningen-clojure-no-need-to-add-clojars-repository-which-is-a-default-repository-for-leiningen" class="anchor" href="#leiningen-clojure-no-need-to-add-clojars-repository-which-is-a-default-repository-for-leiningen" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Leiningen (clojure, no need to add clojars repository which is a default repository for Leiningen)</h2>
152-
<div class="highlight highlight-source-clojure"><pre>[nginx-clojure <span class="pl-s"><span class="pl-pds">"</span>0.5.1<span class="pl-pds">"</span></span>]</pre></div>
152+
<div class="highlight highlight-source-clojure"><pre>[nginx-clojure <span class="pl-s"><span class="pl-pds">"</span>0.5.2<span class="pl-pds">"</span></span>]</pre></div>
153153
<h2>
154154
<a id="user-content-gradle-groovyjava" class="anchor" href="#gradle-groovyjava" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Gradle (groovy/java)</h2>
155-
<pre><code>compile "nginx-clojure:nginx-clojure:0.5.1"
155+
<pre><code>compile "nginx-clojure:nginx-clojure:0.5.2"
156156
</code></pre>
157157
<h2>
158158
<a id="user-content-maven" class="anchor" href="#maven" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Maven</h2>
159159
<div class="highlight highlight-text-xml"><pre>&lt;<span class="pl-ent">dependency</span>&gt;
160160
&lt;<span class="pl-ent">groupId</span>&gt;nginx-clojure&lt;/<span class="pl-ent">groupId</span>&gt;
161161
&lt;<span class="pl-ent">artifactId</span>&gt;nginx-clojure&lt;/<span class="pl-ent">artifactId</span>&gt;
162-
&lt;<span class="pl-ent">version</span>&gt;0.5.1&lt;/<span class="pl-ent">version</span>&gt;
162+
&lt;<span class="pl-ent">version</span>&gt;0.5.2&lt;/<span class="pl-ent">version</span>&gt;
163163
&lt;/<span class="pl-ent">dependency</span>&gt;</pre></div>
164164
<h1>
165165
<a id="user-content-more-documents" class="anchor" href="#more-documents" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>More Documents</h1>
166166
<p>More Documents can be found from its web site <a href="http://nginx-clojure.github.io/" rel="nofollow">nginx-clojure.github.io</a></p>
167167
<h1>
168168
<a id="user-content-license" class="anchor" href="#license" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>License</h1>
169-
<p>Copyright © 2013-2019 Zhang, Yuexiang (xfeep) and released under the BSD 3-Clause license.</p>
169+
<p>Copyright © 2013-2020 Zhang, Yuexiang (xfeep) and released under the BSD 3-Clause license.</p>
170170
<p>This program uses:</p>
171171
<ul>
172172
<li>Re-rooted ASM bytecode engineering library which is distributed under the BSD 3-Clause license</li>

0 commit comments

Comments
 (0)