diff --git a/README.md b/README.md
index 0ab8bf4c5..992314111 100644
--- a/README.md
+++ b/README.md
@@ -32,16 +32,14 @@ After that you can simply run `burst.cmd` and that should start your wallet.
You can get all additional commands available by running `burst.cmd help`
-#### macOS
-
-Firebird (embedded) needs some more work on macOS at the moment. All
-other supported databases should work as expected.
-
-#### Other Unix-like systems
+#### Unix-like systems
Please install Java 8 (JRE 1.8) manually and run it by using burst.sh
You can get further information calling `burst.sh help`
+Please note: Firebird (embedded) needs some more work on macOS at the moment.
+All other supported databases should work as expected.
+
##### Configure and Initialize MariaDB
The Debian and Ubuntu packages provide an automatic configuration of
@@ -89,7 +87,7 @@ nxt.dbPassword=yourpassword
For a general overview of Burst history see https://burstwiki.org/wiki/History_of_Burst
```
-2017/10/24 1.3.6cg multi-DB support: added Firebird, re-added H2
+2017/10/28 1.3.6cg multi-DB support: added Firebird, re-added H2; support for quick binary dump and load
2017/09/04 1.3.4cg improved database deployment; bugfix: utf8 encoding
2017/08/11 1.3.2cg 1st official PoCC release: MariaDB backend based on 1.2.9
```
diff --git a/pom.xml b/pom.xml
index 812873de9..b7d8b0f01 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
burstcoin
burstcoin
- 1.3.5cg
+ 1.3.6cg
jar
diff --git a/src/java/nxt/Nxt.java b/src/java/nxt/Nxt.java
index c737efc2e..7fb342956 100644
--- a/src/java/nxt/Nxt.java
+++ b/src/java/nxt/Nxt.java
@@ -31,7 +31,7 @@
public final class Nxt {
- public static final String VERSION = "1.3.5cg";
+ public static final String VERSION = "1.3.6cg";
public static final String APPLICATION = "NRS";
public static final MetricRegistry metrics = new MetricRegistry();
private static final Logger logger = LoggerFactory.getLogger(Nxt.class);