Skip to content

Commit 525874b

Browse files
authored
Merge pull request #48 from tonlabs/0.28.5-rc
Version 0.28.5
2 parents 06b351a + 900d51e commit 525874b

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
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.28.5 Jul 19, 2021
5+
### Fixed
6+
- Build with new version q-server 0.41.0
7+
48
## 0.28.4 Jul 07, 2021
59
### Fixed
610
- [tvm.rawReserve](https://github.com/tonlabs/TON-Solidity-Compiler/blob/master/API.md#tvmrawreserve) function now correctly reacts on all flags.

docker/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG TON_NODE
22

3-
FROM node:12-buster as q-server-build
3+
FROM node:14-buster as q-server-build
44

55
ARG Q_SERVER_GITHUB_REPO
66
ARG Q_SERVER_GITHUB_REV
@@ -12,7 +12,9 @@ USER node
1212
WORKDIR /home/node
1313
RUN git clone --recursive --branch $Q_SERVER_GITHUB_REV $Q_SERVER_GITHUB_REPO ton-q-server
1414
WORKDIR /home/node/ton-q-server
15-
RUN npm install --production
15+
RUN npm ci; \
16+
npm run tsc; \
17+
npm ci --production
1618

1719
FROM ${TON_NODE} as ton-node
1820

ton-node-se/ton_node_startup/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
build = "../build/build.rs"
33
name = "ton_node_startup"
4-
version = "0.28.4"
4+
version = "0.28.5"
55

66
[dependencies]
77
clap = "2.32.0"

0 commit comments

Comments
 (0)