Skip to content

Commit

Permalink
v1.43.3
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-vasilev committed Jul 2, 2023
1 parent aa22be3 commit dc2de5f
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 35 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 Everscale Client

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

The Library is a binding for [Everscale Client](https://github.com/tonlabs/EVER-SDK) written in Java
that act as a bridge between Everscale 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 "everscale-client-binding-1.43.2-jar-with-dependencies.jar" file located under ${Project_basedir}/binding/target
- If succeed, you can find "everscale-client-binding-1.43.3-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>everscale-client-binding</artifactId>
<version>1.43.2</version>
<version>1.43.3</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.43.2",
"version": "1.43.3",
"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>everscale-client-binding</artifactId>
<version>1.43.2</version>
<version>1.43.3</version>

<name>everscale-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.43.2 https://github.com/tonlabs/TON-SDK.git %TON_DIR%
git clone --single-branch --branch 1.43.3 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.43.2
branch=1.43.3
#`git rev-parse --abbrev-ref HEAD`

[ -d "$tondir" ] || git clone --single-branch --branch $branch https://github.com/tonlabs/TON-SDK.git $tondir
Expand Down
2 changes: 1 addition & 1 deletion examples/Crypto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<dependency>
<groupId>com.radiance.tonclient</groupId>
<artifactId>everscale-client-binding</artifactId>
<version>1.43.2</version>
<version>1.43.3</version>
</dependency>

<dependency>
Expand Down
49 changes: 24 additions & 25 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 = "everscale-client-jni"
version = "1.43.2"
version = "1.43.3"
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>everscale-client</artifactId>
<version>1.43.2</version>
<version>1.43.3</version>
<packaging>pom</packaging>

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

0 comments on commit dc2de5f

Please sign in to comment.