Skip to content

Commit

Permalink
Merge pull request #16 from tonlabs/0.1.3
Browse files Browse the repository at this point in the history
Changes for 0.1.3 release
  • Loading branch information
ar-tmp authored Nov 19, 2021
2 parents bcd402e + dfe430e commit 0db5813
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file.

## [0.1.3] – 2021-11-19

### Improvements

- ton-labs-node dependency is fixed to `8b0fd1cd8dbcbbd55b278ed04842aa551f61e690`
- ton-labs-node: implemented a mechanism with fixed dependencies
- changed service to detect external IP
- ton-labs-node: disabled RUST_BACKTRACE to improve performance

## [0.1.2] – 2021-10-21

### Improvements
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/ton-node/build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY ton-node /tonlabs/ton-node/
# install deps
ENV TZ=Europe/Moscow
ENV PATH="/root/.cargo/bin:${PATH}"
ENV RUST_BACKTRACE=1
#ENV RUST_BACKTRACE=1

RUN apt-get update && apt-get install -y curl gnupg2 && ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

Expand Down
2 changes: 1 addition & 1 deletion scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ done

until [ "$(echo "${IntIP}" | grep "\." -o | wc -l)" -eq 3 ]; do
set +e
IntIP="$(curl -sS ipv4bot.whatismyipaddress.com)":${ADNL_PORT}
IntIP="$(curl -sS https://ip.me/)":${ADNL_PORT}
set -e
echo "INFO: IntIP = $IntIP"
done
Expand Down
2 changes: 1 addition & 1 deletion scripts/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ HOSTNAME=$(hostname -f)
export TON_Q_SERVER_GITHUB_REPO="https://github.com/tonlabs/ton-q-server"
export TON_Q_SERVER_GITHUB_COMMIT_ID="0.34.0"
export TON_NODE_GITHUB_REPO="https://github.com/tonlabs/ton-labs-node"
export TON_NODE_GITHUB_COMMIT_ID="9fd95b11b36e0af673002911fd843009cf1a3629"
export TON_NODE_GITHUB_COMMIT_ID="8b0fd1cd8dbcbbd55b278ed04842aa551f61e690"

0 comments on commit 0db5813

Please sign in to comment.