Skip to content

Commit

Permalink
Merge pull request #48 from tonlabs/0.28.5-rc
Browse files Browse the repository at this point in the history
Version 0.28.5
  • Loading branch information
d3p authored Jul 19, 2021
2 parents 06b351a + 900d51e commit 525874b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Release Notes
All notable changes to this project will be documented in this file.

## 0.28.5 Jul 19, 2021
### Fixed
- Build with new version q-server 0.41.0

## 0.28.4 Jul 07, 2021
### Fixed
- [tvm.rawReserve](https://github.com/tonlabs/TON-Solidity-Compiler/blob/master/API.md#tvmrawreserve) function now correctly reacts on all flags.
Expand Down
6 changes: 4 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG TON_NODE

FROM node:12-buster as q-server-build
FROM node:14-buster as q-server-build

ARG Q_SERVER_GITHUB_REPO
ARG Q_SERVER_GITHUB_REV
Expand All @@ -12,7 +12,9 @@ USER node
WORKDIR /home/node
RUN git clone --recursive --branch $Q_SERVER_GITHUB_REV $Q_SERVER_GITHUB_REPO ton-q-server
WORKDIR /home/node/ton-q-server
RUN npm install --production
RUN npm ci; \
npm run tsc; \
npm ci --production

FROM ${TON_NODE} as ton-node

Expand Down
2 changes: 1 addition & 1 deletion ton-node-se/ton_node_startup/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
build = "../build/build.rs"
name = "ton_node_startup"
version = "0.28.4"
version = "0.28.5"

[dependencies]
clap = "2.32.0"
Expand Down

0 comments on commit 525874b

Please sign in to comment.