Skip to content

Commit 7af8b2f

Browse files
authored
v1.24.0 (#35)
* v1.24.0 * update CI image * update JSON version * update dependencies version
1 parent 1499661 commit 7af8b2f

File tree

13 files changed

+65
-33
lines changed

13 files changed

+65
-33
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ jobs:
2929
build-linux-16:
3030
<<: *build-linux
3131
docker:
32-
- image: 'circleci/openjdk:16-jdk-buster'
32+
- image: 'cimg/openjdk:16.0.2'
3333

3434
build-linux-11:
3535
<<: *build-linux
3636
docker:
37-
- image: 'circleci/openjdk:11-jdk'
37+
- image: 'cimg/openjdk:11.0.12'
3838

3939
build-windows:
4040
executor: win/default

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.24.0] – 2021-10-25
5+
6+
### Featured
7+
- Support for TON-Client ([1.24.0] – 2021-10-25)
8+
49
## [1.23.0] – 2021-10-06
510

611
### Featured

build.sbt

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

3-
version := "1.23.0-M1"
3+
version := "1.24.0-M1"
44

55
organization := "com.dancingcode"
66

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

1414
libraryDependencies ++= Seq(
15-
"org.slf4j" % "slf4j-api" % "1.7.30",
16-
"ch.qos.logback" % "logback-classic" % "1.2.3" % Provided,
17-
"org.scalatest" %% "scalatest" % "3.2.2" % Test
15+
"org.slf4j" % "slf4j-api" % "1.7.32",
16+
"ch.qos.logback" % "logback-classic" % "1.2.6" % Provided,
17+
"org.scalatest" %% "scalatest" % "3.2.9" % Test
1818
)
1919

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

22-
scalacOptions in Compile ++= Seq(
22+
Compile / scalacOptions ++= Seq(
2323
"-Xlog-reflective-calls",
2424
"-Xlint",
2525
"-encoding",
@@ -31,8 +31,7 @@ scalacOptions in Compile ++= Seq(
3131
"-Ywarn-value-discard",
3232
"-Yrangepos"
3333
)
34-
35-
fork in Test := true
34+
Test / fork := true
3635

3736
// settings for Sonatype
3837
homepage := Some(url("https://github.com/slavaschmidt/ton-sdk-client-scala-binding"))
@@ -46,9 +45,9 @@ publishTo := Some(if (isSnapshot.value) Opts.resolver.sonatypeSnapshots else Opt
4645

4746
credentials += Credentials(Path.userHome / ".sbt" / "sonatype_credentials")
4847

49-
envVars in Test := Map(
50-
"LD_LIBRARY_PATH" -> (resourceDirectory in Compile).value.getAbsolutePath,
51-
"PATH" -> (resourceDirectory in Compile).value.getAbsolutePath
48+
Test / envVars := Map(
49+
"LD_LIBRARY_PATH" -> (Compile / resourceDirectory).value.getAbsolutePath,
50+
"PATH" -> (Compile / resourceDirectory).value.getAbsolutePath
5251
)
5352

5453
// To test against all versions: `> + test`

project/build.properties

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

publish.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash -e
2+
3+
sbt publishSigned && sleep 60 && sbt sonatypeRelease

0 commit comments

Comments
 (0)