Skip to content

Commit 997f4b6

Browse files
authored
version bump (#32)
1 parent 3233394 commit 997f4b6

File tree

10 files changed

+18
-10
lines changed

10 files changed

+18
-10
lines changed

CHANGELOG.md

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

4+
\## [1.21.4] – 2021-09-10
5+
6+
### Featured
7+
- Support for TON-Client ([1.21.4] – 2021-09-08)
8+
49
## [1.21.3] – 2021-09-08
510

611
### Featured

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "freeton-sdk-client-scala-binding"
22

3-
version := "1.21.3-M1"
3+
version := "1.21.4-M1"
44

55
organization := "com.dancingcode"
66

184 Bytes
Binary file not shown.
-848 KB
Binary file not shown.
16.4 KB
Binary file not shown.

src/main/resources/ton_client.dll

20.5 KB
Binary file not shown.

src/test/scala/ton/sdk/client/modules/bocSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ abstract class BocSpec[T[_]] extends AsyncFlatSpec with SdkAssertions[T] {
216216
assertValue(result)(Result.EncodedBoc("te6ccgEBAgEAKQABL7/f4EAAAAAAAAAAAG2m0us0F8ViiEjLZAEAF7OJx0AnACRgJH/bsA=="))
217217
}
218218

219-
private val jsonVerison = 7
219+
private val jsonVerison = 6
220220

221221
val expectedBlockchainConfig =
222222
Result.ConfigBoc(

src/test/scala/ton/sdk/client/modules/clientSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ abstract class ClientSpec[T[_]] extends AsyncFlatSpec with SdkAssertions[T] {
5050

5151
implicit val ef: Effect[T]
5252

53-
private val versionNumber = "1.21.3"
53+
private val versionNumber = "1.21.4"
5454

5555
behavior of "Client"
5656

src/test/scala/ton/sdk/client/modules/netSpec.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ abstract class NetSpec[T[_]] extends AsyncFlatSpec with SdkAssertions[T] {
9696
val result = devNet { implicit ctx =>
9797
call(Request.QueryCollection("blocks_signatures", result = "id", limit = Option(1)))
9898
}
99-
assertExpression(result)(_.result.isEmpty)
99+
assertExpression(result)(_.result.nonEmpty)
100100
}
101101

102102
it should "query_collection accounts" in {
@@ -204,8 +204,8 @@ abstract class NetSpec[T[_]] extends AsyncFlatSpec with SdkAssertions[T] {
204204
val result = devNet { implicit ctx =>
205205
call(Request.FindLastShardBlock(giverAddress))
206206
}
207-
// assertExpression(result)(_.block_id.length == 64)
208-
assertSdkError(result)("No blocks for workchain 0 found")
207+
assertExpression(result)(_.block_id.length == 64)
208+
//assertSdkError(result)("No blocks for workchain 0 found")
209209
}
210210

211211
it should "not find_last_shard_block" in {

update_libs.sh

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

3-
wget http://sdkbinaries-ws.tonlabs.io/tonclient_1_win32_lib.gz
4-
wget http://sdkbinaries-ws.tonlabs.io/tonclient_1_win32_dll.gz
5-
wget http://sdkbinaries-ws.tonlabs.io/tonclient_1_darwin.gz
6-
wget http://sdkbinaries-ws.tonlabs.io/tonclient_1_linux.gz
3+
wget http://binaries.tonlabs.io/tonclient_1_win32_lib.gz
4+
wget http://binaries.tonlabs.io/tonclient_1_win32_dll.gz
5+
wget http://binaries.tonlabs.io/tonclient_1_darwin.gz
6+
wget http://binaries.tonlabs.io/tonclient_1_darwin_arm64.gz
7+
wget http://binaries.tonlabs.io/tonclient_1_linux.gz
78

89
gunzip tonclient_1_win32_lib.gz
910
gunzip tonclient_1_win32_dll.gz
1011
gunzip tonclient_1_darwin.gz
12+
gunzip tonclient_1_darwin_arm64.gz
1113
gunzip tonclient_1_linux.gz
1214

1315
mv tonclient_1_darwin src/main/resources/libton_client_x86_64.dylib
16+
mv tonclient_1_darwin_arm64 src/main/resources/libton_client_aarch64.dylib
1417
mv tonclient_1_linux src/main/resources/libton_client.so
1518
mv tonclient_1_win32_dll src/main/resources/ton_client.dll
1619
mv tonclient_1_win32_lib src/main/resources/ton_client.lib

0 commit comments

Comments
 (0)