提交 1c6e22a5 authored 作者: thomasmueller's avatar thomasmueller

Prepare release

上级 f974e8b5
......@@ -21,6 +21,12 @@ Change Log
<h2>Next Version (unreleased)</h2>
<ul>
<li>-
</li>
</ul>
<h2>Version 1.4.196 (2017-06-10)</h2>
<ul>
<li>Issue#479 Allow non-recursive CTEs (WITH statements), patch from stumc
</li>
<li>Fix startup issue when using "CHECK" as a column name.
......
......@@ -16,22 +16,22 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public static final String BUILD_DATE = "2017-04-23";
public static final String BUILD_DATE = "2017-06-10";
/**
* The build date of the last stable release.
*/
public static final String BUILD_DATE_STABLE = "2017-03-10";
public static final String BUILD_DATE_STABLE = "2017-04-23";
/**
* The build id is incremented for each public release.
*/
public static final int BUILD_ID = 195;
public static final int BUILD_ID = 196;
/**
* The build id of the last stable release.
*/
public static final int BUILD_ID_STABLE = 194;
public static final int BUILD_ID_STABLE = 195;
/**
* Whether this is a snapshot version.
......
......@@ -7,6 +7,7 @@
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
INSERT INTO VERSION VALUES
(146, '1.4.197', '2017-06-10'),
(145, '1.4.195', '2017-04-23'),
(144, '1.4.194', '2017-03-10'),
(143, '1.4.193', '2016-10-31'),
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论