Skip to content

Commit 79f8d71

Browse files
authored
V1.37.1-M1 (#39)
* Updating dependencies * 1.28.0: Updated devnet endpints * 1.28.1: Updated mainnet endpints * 1.29.0: Support fro abi.encode_boc * 1.29.0: Support fro abi.encode_boc * 1.30.0 * 1.32.0 * 1.33.0 * 1.34.0 * 1.35.0 * 1.35.1 * 1.36.0 * 1.31.0 * 1.37.1 * 1.31.0 * 1.37.1 * 1.37.1 * cleanup * cleanup
1 parent fa5a8a6 commit 79f8d71

27 files changed

+488
-181
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
key: sbt-cache
1515
- run:
1616
name: Compile test coverage
17-
command: cat /dev/null | sbt clean coverage test coverageReport
17+
command: cat /dev/null | SCALACTIC_FILL_FILE_PATHNAMES=yes sbt clean coverage test coverageReport
1818
- run:
1919
name: Upload coverage
2020
command: cat /dev/null | bash <(curl -s https://codecov.io/bash)
@@ -46,7 +46,7 @@ jobs:
4646
key: sbt-cache
4747
- run:
4848
name: Compile test coverage
49-
command: cat /dev/null | sbt clean coverage test coverageReport
49+
command: cat /dev/null | SCALACTIC_FILL_FILE_PATHNAMES=yes sbt clean coverage test coverageReport
5050
- codecov/upload:
5151
file: {{ coverage_report_filepath }}
5252

CHANGELOG.md

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

4+
## [1.37.1] – 2022-09-10
5+
6+
### Featured
7+
- Support for TON-Client [1.28.0] – 2021-12-24
8+
- Support for TON-Client [1.28.1] – 2022-01-25
9+
- Support for TON-Client [1.29.0] – 2022-02-03
10+
- Support for TON-Client [1.30.0] – 2022-02-04
11+
- Support for TON-Client [1.31.0] – 2022-03-09
12+
- Support for TON-Client [1.32.0] – 2022-03-22
13+
- Support for TON-Client [1.33.0] – 2022-05-02
14+
- Support for TON-Client [1.33.1] – 2022-05-10
15+
- Support for TON-Client [1.34.0] – 2022-05-18
16+
- Support for TON-Client [1.34.1] – 2022-05-26
17+
- Support for TON-Client [1.34.2] – 2022-05-30
18+
- Support for TON-Client [1.34.3] – 2022-06-08
19+
- Support for TON-Client [1.35.0] – 2022-06-28
20+
- Support for TON-Client [1.35.1] – 2022-06-28
21+
- Support for TON-Client [1.36.0] – 2022-07-01
22+
- Support for TON-Client [1.36.1] – 2022-07-18
23+
- Support for TON-Client [1.37.0] – 2022-07-28
24+
- Support for TON-Client [1.37.1] – 2022-08-03
25+
426
## [1.27.1] – 2021-12-15
527

628
### Featured

build.sbt

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

3-
version := "1.27.1-M1"
3+
version := "1.37.1-M1"
44

55
organization := "com.dancingcode"
66

@@ -12,12 +12,12 @@ scalaVersion := scala212
1212
// lazy val crossScalaVersions = List(scala212, scala213)
1313

1414
libraryDependencies ++= Seq(
15-
"org.slf4j" % "slf4j-api" % "1.7.32",
16-
"ch.qos.logback" % "logback-classic" % "1.2.7" % Provided,
17-
"org.scalatest" %% "scalatest" % "3.2.9" % Test
15+
"org.slf4j" % "slf4j-api" % "2.0.0",
16+
"ch.qos.logback" % "logback-classic" % "1.4.0" % Provided,
17+
"org.scalatest" %% "scalatest" % "3.2.12" % Test
1818
)
1919

20-
libraryDependencies ++= Seq("circe-core", "circe-generic", "circe-parser", "circe-literal", "circe-generic-extras").map("io.circe" %% _ % "0.13.0")
20+
libraryDependencies ++= Seq("circe-core", "circe-generic", "circe-parser", "circe-literal", "circe-generic-extras").map("io.circe" %% _ % "0.14.2")
2121

2222
Compile / scalacOptions ++= Seq(
2323
"-Xlog-reflective-calls",

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.5.0
1+
sbt.version = 1.7.1

src/main/c/tonclient.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,10 @@ tc_string_handle_t* tc_request_sync(
4242

4343
tc_string_data_t tc_read_string(const tc_string_handle_t* handle);
4444
void tc_destroy_string(const tc_string_handle_t* handle);
45+
46+
void tc_request_ptr(
47+
uint32_t context,
48+
tc_string_data_t function_name,
49+
tc_string_data_t function_params_json,
50+
void* request_ptr,
51+
tc_response_handler_ptr_t response_handler);
2.01 MB
Binary file not shown.
1.32 MB
Binary file not shown.
1.58 MB
Binary file not shown.

src/main/resources/ton_client.dll

2.62 MB
Binary file not shown.

src/main/resources/ton_client.lib

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)