Skip to content

Commit

Permalink
v1.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-vasilev committed Dec 31, 2021
1 parent 38e5fa2 commit f170864
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 25 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Java library for TON Client

[![SDK version](https://img.shields.io/badge/TON%20SDK%20version-1.27.1-green)](https://github.com/tonlabs/TON-SDK/tree/1.27.1)
[![SDK version](https://img.shields.io/badge/TON%20SDK%20version-1.28.0-green)](https://github.com/tonlabs/TON-SDK/tree/1.28.0)

The Library is a binding for [TONOS Client](https://github.com/tonlabs/TON-SDK) written in Java
that act as a bridge between TONOS Client and a Java application. The library includes original
Expand Down Expand Up @@ -42,7 +42,7 @@ Follow installation instructions from https://docs.docker.com/engine/install/
```
$ mvn test
```
- If succeed, you can find "ton-client-binding-1.27.1-jar-with-dependencies.jar" file located under ${Project_basedir}/binding/target
- If succeed, you can find "ton-client-binding-1.28.0-jar-with-dependencies.jar" file located under ${Project_basedir}/binding/target


### Clean
Expand All @@ -60,7 +60,7 @@ To use it in your projects, add the dependency to `pom.xml`
<dependency>
<groupId>com.radiance.tonclient</groupId>
<artifactId>ton-client-binding</artifactId>
<version>1.27.1</version>
<version>1.28.0</version>
</dependency>
...
```
Expand Down
2 changes: 1 addition & 1 deletion binding/api.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.27.1",
"version": "1.28.0",
"modules": [
{
"name": "client",
Expand Down
2 changes: 1 addition & 1 deletion binding/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.radiance.tonclient</groupId>
<artifactId>ton-client-binding</artifactId>
<version>1.27.1</version>
<version>1.28.0</version>

<name>ton-client-binding</name>
<!-- FIXME change it to the project's website -->
Expand Down
2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SET PROJECT_DIR=%~dp0
SET TON_DIR=%PROJECT_DIR%\target\TON-SDK

IF NOT EXIST %TON_DIR% (
git clone --single-branch --branch 1.27.1 https://github.com/tonlabs/TON-SDK.git %TON_DIR%
git clone --single-branch --branch 1.28.0 https://github.com/tonlabs/TON-SDK.git %TON_DIR%
)

cd jni
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
tondir=target/TON-SDK

projectdir=`pwd`
branch=1.27.1
branch=1.28.0
#`git rev-parse --abbrev-ref HEAD`

[ -d "$tondir" ] || git clone --single-branch --branch $branch https://github.com/tonlabs/TON-SDK.git $tondir
Expand Down
47 changes: 31 additions & 16 deletions jni/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion jni/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ton-client-jni"
version = "1.27.1"
version = "1.28.0"
authors = ["Igor Vasilev"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.radiance.tonclient</groupId>
<artifactId>ton-client</artifactId>
<version>1.27.1</version>
<version>1.28.0</version>
<packaging>pom</packaging>

<name>ton-client</name>
Expand Down

0 comments on commit f170864

Please sign in to comment.