Bump version number

This commit is contained in:
Christoph Atteneder 2019-11-01 09:03:05 +01:00
parent b976570426
commit 0c85c8c7a6
No known key found for this signature in database
GPG Key ID: CD5DC1C529CDFD3B
13 changed files with 17 additions and 17 deletions

View File

@ -274,7 +274,7 @@ configure(project(':desktop')) {
apply plugin: 'witness'
apply from: '../gradle/witness/gradle-witness.gradle'
version = '1.2.1-SNAPSHOT'
version = '1.2.2'
mainClassName = 'bisq.desktop.app.BisqAppMain'

View File

@ -27,7 +27,7 @@ public class Version {
// VERSION = 0.5.0 introduces proto buffer for the P2P network and local DB and is a not backward compatible update
// Therefore all sub versions start again with 1
// We use semantic versioning with major, minor and patch
public static final String VERSION = "1.2.1";
public static final String VERSION = "1.2.2";
public static int getMajorVersion(String version) {
return getSubVersion(version, 0);
@ -73,7 +73,7 @@ public class Version {
// The version no. for the objects sent over the network. A change will break the serialization of old objects.
// If objects are used for both network and database the network version is applied.
// VERSION = 0.5.0 -> P2P_NETWORK_VERSION = 1
// With version 1.2.1 we change to version 2 (new trade protocol)
// With version 1.2.2 we change to version 2 (new trade protocol)
public static final int P2P_NETWORK_VERSION = 1;
// The version no. of the serialized data stored to disc. A change will break the serialization of old objects.
@ -84,7 +84,7 @@ public class Version {
// A taker will check the version of the offers to see if his version is compatible.
// Offers created with the old version will become invalid and have to be canceled.
// VERSION = 0.5.0 -> TRADE_PROTOCOL_VERSION = 1
// Version 1.2.1 -> TRADE_PROTOCOL_VERSION = 2
// Version 1.2.2 -> TRADE_PROTOCOL_VERSION = 2
public static final int TRADE_PROTOCOL_VERSION = 2;
private static int p2pMessageVersion;

View File

@ -8,7 +8,7 @@
# pull base image
FROM openjdk:8-jdk
ENV version 1.2.1-SNAPSHOT
ENV version 1.2.2
RUN apt-get update && apt-get install -y --no-install-recommends openjfx && rm -rf /var/lib/apt/lists/* &&
apt-get install -y vim fakeroot

View File

@ -6,7 +6,7 @@
# - Update version below
# - Ensure JAVA_HOME below is pointing to OracleJDK 10 directory
version=1.2.1-SNAPSHOT
version=1.2.2
if [ ! -f "$JAVA_HOME/bin/javapackager" ]; then
if [ -d "/usr/lib/jvm/jdk-10.0.2" ]; then
JAVA_HOME=/usr/lib/jvm/jdk-10.0.2

View File

@ -4,7 +4,7 @@
# Prior to running this script:
# - Update version below
version=1.2.1-SNAPSHOT
version=1.2.2
base_dir=$( cd "$(dirname "$0")" ; pwd -P )/../../..
package_dir=$base_dir/desktop/package
release_dir=$base_dir/desktop/release/$version

View File

@ -5,10 +5,10 @@
<!-- See: https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -->
<key>CFBundleVersion</key>
<string>1.2.1</string>
<string>1.2.2</string>
<key>CFBundleShortVersionString</key>
<string>1.2.1</string>
<string>1.2.2</string>
<key>CFBundleExecutable</key>
<string>Bisq</string>

View File

@ -6,7 +6,7 @@ mkdir -p deploy
set -e
version="1.2.1-SNAPSHOT"
version="1.2.2"
cd ..
./gradlew :desktop:build -x test shadowJar

View File

@ -2,7 +2,7 @@
cd ../../
version="1.2.1-SNAPSHOT"
version="1.2.2"
target_dir="releases/$version"

View File

@ -2,8 +2,8 @@
cd $(dirname $0)/../../../
oldVersion=1.2.0
newVersion=1.2.1
oldVersion=1.2.1
newVersion=1.2.2
find . -type f \( -name "finalize.sh" \
-o -name "create_app.sh" \

View File

@ -8,7 +8,7 @@
@echo off
set version=1.2.1-SNAPSHOT
set version=1.2.2
if not exist "%JAVA_HOME%\bin\javapackager.exe" (
if not exist "%ProgramFiles%\Java\jdk-10.0.2" (
echo Javapackager not found. Update JAVA_HOME variable to point to OracleJDK.

View File

@ -6,7 +6,7 @@
@echo off
set version=1.2.1-SNAPSHOT
set version=1.2.2
set release_dir=%~dp0..\..\..\releases\%version%
set package_dir=%~dp0..

View File

@ -1 +1 @@
1.2.1-SNAPSHOT
1.2.2

View File

@ -34,7 +34,7 @@ import lombok.extern.slf4j.Slf4j;
@Slf4j
public class SeedNodeMain extends ExecutableForAppWithP2p {
private static final String VERSION = "1.2.1";
private static final String VERSION = "1.2.2";
private SeedNode seedNode;
public SeedNodeMain() {