Skip to content

Commit 0b9d2a7

Browse files
committed
Fix version #272
1 parent d1956c7 commit 0b9d2a7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@
7373
[org.clojure/tools.trace "0.7.10"]
7474
]}
7575
:unittest {
76-
:jvm-opts ["-javaagent:target/nginx-clojure-0.5.3.jar=mb"
76+
:jvm-opts ["-javaagent:target/nginx-clojure-0.6.0.jar=mb"
7777
"-Dfile.encoding=UTF-8"
7878
"-Dnginx.clojure.wave.udfs=pure-clj.txt,compojure.txt,compojure-http-clj.txt,mysql-jdbc.txt,test-groovy.txt"
79-
"-Xbootclasspath/a:target/nginx-clojure-0.5.3.jar"]
79+
"-Xbootclasspath/a:target/nginx-clojure-0.6.0.jar"]
8080
:junit-options {:fork "on"}
8181
:java-source-paths ["test/java" "test/clojure"]
8282
:test-paths ["src/test/clojure"]

src/c/ngx_http_clojure_mem.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ typedef unsigned __int64 uint64_t;
4141
#define JVM_CP_SEP_S ":"
4242
#endif
4343

44-
#define nginx_clojure_ver 5003 /*0.5.3*/
44+
#define nginx_clojure_ver 6000 /*0.6.0*/
4545

4646
/*the least jar version required*/
4747
#define nginx_clojure_required_rt_lver 5002
4848

49-
#define NGINX_CLOJURE_VER_NUM_STR "0.5.3"
49+
#define NGINX_CLOJURE_VER_NUM_STR "0.6.0"
5050

5151
#define NGINX_CLOJURE_VER "nginx-clojure/" NGINX_CLOJURE_VER_NUM_STR
5252

src/java/nginx/clojure/MiniConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ public class MiniConstants {
390390

391391
//nginx clojure java runtime required the lowest version of nginx-clojure c module
392392
public static long NGINX_CLOJURE_RT_REQUIRED_LVER = 5002;
393-
public static long NGINX_CLOJURE_RT_VER = 5003;
393+
public static long NGINX_CLOJURE_RT_VER = 6000;
394394

395395
//ngx_core.h
396396
public final static int NGX_OK = 0;

0 commit comments

Comments
 (0)