Skip to content

Commit 2019c3f

Browse files
authored
Merge pull request #67 from tonlabs/0.29.0-rc
Version 0.29.0
2 parents 44844fb + 9d848bf commit 2019c3f

File tree

9 files changed

+22
-18
lines changed

9 files changed

+22
-18
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Release Notes
22
All notable changes to this project will be documented in this file.
33

4+
## 0.29.0 Feb 09, 2022
5+
### New
6+
- `MYCODE` VM instruction supported
7+
48
## 0.28.12 Jan 26, 2022
59
### Fixed
610
- Support breaking changes in `ton-labs-block-json` v0.7.1

build.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22

33
set TON_NODE="tonlabs/ton-node"
4-
set TONOS_SE="tonlabs/local-node"
4+
set TONOS_SE="tonlabs/evernode-se"
55

66
set BIN_TARGET="ton_node_startup"
77

@@ -34,4 +34,4 @@ echo.
3434
echo BUILD SUCCESS
3535
echo.
3636
echo How to run:
37-
echo docker run -d --name local-node -e USER_AGREEMENT=yes -p80:80 %TONOS_SE%
37+
echo docker run -d --name evernode-se -e USER_AGREEMENT=yes -p80:80 %TONOS_SE%

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh -e
22

33
TON_NODE="tonlabs/ton-node"
4-
TONOS_SE="${TONOS_SE:-tonlabs/local-node}"
4+
TONOS_SE="${TONOS_SE:-tonlabs/evernode-se}"
55

66
BIN_TARGET="ton_node_startup"
77

@@ -33,4 +33,4 @@ echo
3333
echo "BUILD SUCCESS"
3434
echo
3535
echo "How to run:"
36-
echo "docker run -d --name local-node -e USER_AGREEMENT=yes -p80:80 $TONOS_SE"
36+
echo "docker run -d --name evernode-se -e USER_AGREEMENT=yes -p80:80 $TONOS_SE"

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN npm ci; \
1818

1919
FROM ${TON_NODE} as ton-node
2020

21-
FROM arangodb:3.6
21+
FROM arangodb:3.7.11
2222

2323
ENV LANG=en_US.UTF-8
2424
ENV PYTHONIOENCODING=utf-8

docker/ton-node/blockchain.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
],
1515
"p8": {
1616
"version": 5,
17-
"capabilities": "46"
17+
"capabilities": "1070"
1818
},
1919
"p9": [
2020
0,

ton-node-se/create_msg/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ hex = "0.4.2"
1111
serde_json = "1.0.62"
1212
tokio = { version = "0.2.13", features = ["macros"] }
1313

14-
ton_block = { git = 'https://github.com/tonlabs/ton-labs-block', tag = '1.7.36' }
14+
ton_block = { git = 'https://github.com/tonlabs/ton-labs-block', tag = '1.7.38' }
1515
ton_client = { git = 'https://github.com/tonlabs/TON-SDK.git', package = "ton_client", tag = '1.28.0' }
1616
ton_types = { git = 'https://github.com/tonlabs/ton-labs-types', tag = '1.10.12' }
17-
ton_vm = { git = 'https://github.com/tonlabs/ton-labs-vm', tag = '1.8.29' }
17+
ton_vm = { git = 'https://github.com/tonlabs/ton-labs-vm', tag = '1.8.31' }
1818

1919
ton_node_old = { path = "../ton_node" }
2020

ton-node-se/poa/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ rustc-hex = "1.0"
3232
unexpected = { path = "parity/util/unexpected" }
3333

3434
# In-house
35-
ton_vm = { git = 'https://github.com/tonlabs/ton-labs-vm', default-features = false, tag = '1.8.29' }
36-
ton_block = { git = 'https://github.com/tonlabs/ton-labs-block', tag = '1.7.36' }
35+
ton_vm = { git = 'https://github.com/tonlabs/ton-labs-vm', default-features = false, tag = '1.8.31' }
36+
ton_block = { git = 'https://github.com/tonlabs/ton-labs-block', tag = '1.7.38' }
3737
ton_types = { git = 'https://github.com/tonlabs/ton-labs-types', tag = '1.10.12' }
3838

3939

ton-node-se/ton_node/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ tokio-io-timeout = "0.3.1"
3333
# Domestic
3434
poa = { path = "../poa" }
3535
ton_api = { git = 'https://github.com/tonlabs/ton-labs-tl', package = 'ton_api', tag = '0.2.110' }
36-
ton_block = { git = 'https://github.com/tonlabs/ton-labs-block', tag = '1.7.36' }
37-
ton_executor = { git = 'https://github.com/tonlabs/ton-labs-executor', tag = '1.15.51' }
36+
ton_block = { git = 'https://github.com/tonlabs/ton-labs-block', tag = '1.7.38' }
37+
ton_executor = { git = 'https://github.com/tonlabs/ton-labs-executor', tag = '1.15.54' }
3838
ton_types = { git = 'https://github.com/tonlabs/ton-labs-types', tag = '1.10.12' }
39-
ton_vm = { git = 'https://github.com/tonlabs/ton-labs-vm', tag = '1.8.29' }
39+
ton_vm = { git = 'https://github.com/tonlabs/ton-labs-vm', tag = '1.8.31' }
4040
ton_labs_assembler = { git = "https://github.com/tonlabs/ton-labs-assembler.git", tag = '1.2.30' }
4141

4242
# TBD

ton-node-se/ton_node_startup/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[package]
22
build = "../build/build.rs"
33
name = "ton_node_startup"
4-
version = "0.28.12"
4+
version = "0.29.0"
55

66
[dependencies]
77
clap = "2.32.0"
88
log = "0.4.6"
99
log4rs = "0.8.3"
1010
ton_node = { path = "../ton_node", features = ["startup_node"], package = "ton_node_old" }
11-
ton_block = { git = 'https://github.com/tonlabs/ton-labs-block', tag = '1.7.36' }
12-
ton_block_json = { git = "https://github.com/tonlabs/ton-labs-block-json.git", tag = '0.7.1' }
13-
ton_executor = { git = 'https://github.com/tonlabs/ton-labs-executor', tag = '1.15.51' }
11+
ton_block = { git = 'https://github.com/tonlabs/ton-labs-block', tag = '1.7.38' }
12+
ton_block_json = { git = "https://github.com/tonlabs/ton-labs-block-json.git", tag = '0.7.3' }
13+
ton_executor = { git = 'https://github.com/tonlabs/ton-labs-executor', tag = '1.15.54' }
1414
ton_types = { git = 'https://github.com/tonlabs/ton-labs-types', tag = '1.10.12' }
15-
ton_vm = { git = 'https://github.com/tonlabs/ton-labs-vm', tag = '1.8.29' }
15+
ton_vm = { git = 'https://github.com/tonlabs/ton-labs-vm', tag = '1.8.31' }
1616
ed25519-dalek = "1.0.0-pre.4"
1717
reqwest = "0.9.7"
1818
http = "0.1.17"

0 commit comments

Comments
 (0)