Skip to content

Commit

Permalink
Version advancement
Browse files Browse the repository at this point in the history
  • Loading branch information
andreitokar committed Jan 17, 2022
1 parent 36e790d commit be306de
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 72 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ More information: https://h2database.com
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.0.206</version>
<version>2.1.210</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion h2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.1.209-SNAPSHOT</version>
<version>2.1.210</version>
<packaging>jar</packaging>
<name>H2 Database Engine</name>
<url>https://h2database.com</url>
Expand Down
66 changes: 6 additions & 60 deletions h2/src/docsrc/html/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ <h1>Change Log</h1>

<h2>Next Version (unreleased)</h2>
<ul>
<li>Nothing yet...
</li>
</ul>

<h2>Version 2.1.210 (2022-01-17)</h2>
<ul>
<li>Issue #3376: Data cannot be read after insert of clob data > MAX_LENGTH_INPLACE_LOB with data change delta table
</li>
<li>PR #3377: Add -webExternalNames setting and fix WebServer.getConnection()
Expand Down Expand Up @@ -1240,64 +1246,4 @@ <h2>Version 1.4.200 (2019-10-14)</h2>
</li>
</ul>

<h2>Version 1.4.199 (2019-03-13)</h2>
<ul>
<li>PR #1807: Reduce code duplication and remove h2.mixedGeometries
</li>
<li>PR #1806: Improve SELECT FOR UPDATE documentation
</li>
<li>PR #1804: Lift limit of 10 characters on enum value (1.4.198 regression)
</li>
<li>PR #1803: Do not rely on index sorting in SELECT FOR UPDATE
</li>
<li>Issue #1800: Remove experimental status from window functions
</li>
<li>PR #1799: Fire triggers after row locking and remove some leftovers
</li>
<li>PR #1798: Reuse some string builders, remove StatementBuilder and other minor changes
</li>
<li>Issue #1795: 1.4.198 regression with batch updates and transactions
</li>
<li>PR #1794: Ask password in Shell in secure way and improve database creation information in tutorial
</li>
<li>PR #1791: Move commands to commands.html and other changes
</li>
<li>Issue #1774: H2 Browser configuration is unclear and fails on KUbuntu
</li>
<li>PR #1790: Do not convert standard TRIM function to non-standard functions
</li>
<li>Issue #1787: Non-standard MERGE throws LOCK_TIMEOUT_1 on violation of some constraints
</li>
<li>PR #1784: improve database not found error
</li>
<li>Issue #1740: Enhancement Request: h2 server: do not swallow exceptions
</li>
<li>Issue #1616: Metadata and scripts should be persisted with unconditionally quoted identifiers
</li>
<li>PR #1779: Improve isSimpleIdentifier() and enquoteIdentifier()
</li>
<li> PR #1776: Improve DATABASE_TO_LOWER handling
</li>
<li>Issue #1771: NPE in Comparison.createIndexConditions
</li>
<li>PR #1772: Fix newlines in test scripts
</li>
<li>Issue #1762: NullPointerException in Parser. Introduced in 1.4.198
</li>
<li>PR #1768: Add more context-sensitive keywords
</li>
<li>Issue #1758: sequence restart issue with 1.4.198
</li>
<li>Issue #1759: SELECT &#8230; FOR UPDATE returns old data in 1.4.198
</li>
<li>PR #1756: Fix DISTINCT ON in presence of ORDER BY
</li>
<li>PR #1754: Fix window functions in JOIN with ON condition
</li>
<li>Issue #1751: making it easier to open console and create local databases
</li>
<li>Issue #1750: JOIN t ON t.col IN (SELECT ...) throws AssertionError
</li>
</ul>

<!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html>
4 changes: 4 additions & 0 deletions h2/src/docsrc/html/download-archive.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ <h2>Distribution</h2>

<table>
<tbody>
<tr><td>2.1.210</td>
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.1.210/h2-setup-2022-01-16.exe">Windows Installer</a></td>
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.1.210/h2-2022-01-16.zip">Platform-Independent Zip</a></td>
</tr>
<tr><td>2.0.206</td>
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.0.206/h2-setup-2022-01-04.exe">Windows Installer</a></td>
<td><a href="https://github.com/h2database/h2database/releases/download/version-2.0.206/h2-2022-01-04.zip">Platform-Independent Zip</a></td>
Expand Down
6 changes: 3 additions & 3 deletions h2/src/main/org/h2/engine/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ public class Constants {
/**
* The build date is updated for each public release.
*/
public static final String BUILD_DATE = "2021-12-21";
public static final String BUILD_DATE = "2022-01-17";

/**
* Sequential version number. Even numbers are used for official releases,
* odd numbers are used for development builds.
*/
public static final int BUILD_ID = 209;
public static final int BUILD_ID = 210;

/**
* Whether this is a snapshot version.
*/
public static final boolean BUILD_SNAPSHOT = true;
public static final boolean BUILD_SNAPSHOT = false;

/**
* If H2 is compiled to be included in a product, this should be set to
Expand Down
9 changes: 2 additions & 7 deletions h2/src/test/org/h2/samples/newsfeed.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
CREATE TABLE VERSION(ID INT PRIMARY KEY, VERSION VARCHAR, CREATED VARCHAR);
INSERT INTO VERSION VALUES

(154, '2.1.210', '2022-01-17'),
(153, '2.0.206', '2022-01-04'),
(152, '2.0.204', '2021-12-21'),
(151, '2.0.202', '2021-11-25'),
Expand All @@ -19,13 +20,7 @@ INSERT INTO VERSION VALUES
(144, '1.4.194', '2017-03-10'),
(143, '1.4.193', '2016-10-31'),
(142, '1.4.192', '2016-05-26'),
(141, '1.4.191', '2016-01-21'),
(140, '1.4.190', '2015-10-11'),
(139, '1.4.189', '2015-09-13'),
(138, '1.4.188', '2015-08-01'),
(137, '1.4.187', '2015-04-10'),
(136, '1.4.186', '2015-03-02'),
(135, '1.4.185', '2015-01-16');
(141, '1.4.191', '2016-01-21');

CREATE TABLE CHANNEL(TITLE VARCHAR, LINK VARCHAR, DESC VARCHAR,
LANGUAGE VARCHAR, PUB TIMESTAMP, LAST TIMESTAMP, AUTHOR VARCHAR);
Expand Down

0 comments on commit be306de

Please sign in to comment.