Skip to content

Commit

Permalink
Bump version to 1.0.0 (#24)
Browse files Browse the repository at this point in the history
* Bump to 1.0.0

Signed-off-by: Bogdan Vaneev <[email protected]>

* Enable logging

Signed-off-by: Bogdan Vaneev <[email protected]>

* fix review issues

Signed-off-by: Bogdan Vaneev <[email protected]>
  • Loading branch information
Warchant authored May 13, 2019
1 parent b06b1e7 commit e92eeb8
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
id 'com.adarshr.test-logger' version '1.6.0'
}

allprojects {
group 'jp.co.soramitsu'
version = "1.0"
Expand Down Expand Up @@ -48,6 +52,22 @@ subprojects {

dependsOn(test)
}

test {
testlogger {
theme 'standard'
showExceptions true
slowThreshold 2000
showSummary true
showPassed true
showSkipped true
showFailed true
showStandardStreams true
showPassedStandardStreams false
showSkippedStandardStreams false
showFailedStandardStreams true
}
}
}

task wrapper(type: Wrapper) {
Expand Down
2 changes: 1 addition & 1 deletion testcontainers/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hyperledger/iroha:1.0.0_rc5
FROM hyperledger/iroha:1.0.0
WORKDIR /opt/iroha_data
ENTRYPOINT [""]
COPY run-iroha.sh wait-for-it.sh /
Expand Down
2 changes: 1 addition & 1 deletion testcontainers/docker/build_and_push.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

export TAG=warchantua/iroha:1.0.0_rc5
export TAG=warchantua/iroha:1.0.0

docker build -t $TAG --compress --squash .
docker push $TAG
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class IrohaContainer extends FailureDetectingExternalResource implements
public static final String defaultPostgresAlias = "iroha.postgres";
public static final String defaultIrohaAlias = "iroha";
public static final String irohaWorkdir = "/opt/iroha_data";
public static final String defaultIrohaDockerImage = "warchantua/iroha:1.0.0_rc5";
public static final String defaultIrohaDockerImage = "warchantua/iroha:1.0.0";
public static final String defaultPostgresDockerImage = "postgres:11-alpine";

// env vars
Expand Down

0 comments on commit e92eeb8

Please sign in to comment.