Skip to content

Commit

Permalink
update: 打包个1.r.56.r3 修正个bug,不然很蛋疼
Browse files Browse the repository at this point in the history
  • Loading branch information
wendal committed May 12, 2016
1 parent 157124c commit fb518fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>nutz</artifactId>
<packaging>jar</packaging>
<name>Nutz</name>
<version>1.r.57-SNAPSHOT</version>
<version>1.r.56.r3</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
4 changes: 2 additions & 2 deletions src/org/nutz/Nutz.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public final class Nutz {
* @return nutz 项目的版本号
*/
public static String version() {
return String.format("%d.%s.%d-SNAPSHOT",
return String.format("%d.%s.%d-r3",
majorVersion(),
releaseLevel(),
minorVersion());
Expand All @@ -50,7 +50,7 @@ public static int majorVersion() {
* 发布流水
*/
public static int minorVersion() {
return 57;
return 56;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/org/nutz/dao/util/Daos.java
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ public static Set<String> sql2003Keywords() {
return keywords;
}

public static boolean CHECK_COLUMN_NAME_KEYWORD = true;
public static boolean CHECK_COLUMN_NAME_KEYWORD = false;
public static boolean FORCE_WRAP_COLUMN_NAME = false;
public static boolean FORCE_UPPER_COLUMN_NAME = false;
}
Expand Down

0 comments on commit fb518fc

Please sign in to comment.