Skip to content

Commit 836c2a5

Browse files
release/1.2.1 (#20)
* Update version to 1.2.1-SNAPSHOT * fix java 8 compat --------- Co-authored-by: GitHub Actions <[email protected]>
1 parent 714cf9f commit 836c2a5

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/publish-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: Publish Signed Artifacts
5555
if : ${{ github.event.inputs.publish == 'true' }}
56-
run: sbt +publishSigned
56+
run: ./sbt-publish.sh
5757
env:
5858
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
5959
PGP_SECRET: ${{ secrets.PGP_SECRET }}

project/ProjectSettings.scala

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ import com.typesafe.sbt.SbtScalariform
44
import scalariform.formatter.preferences.{AlignSingleLineCaseStatements, DanglingCloseParenthesis, DoubleIndentConstructorArguments, Preserve}
55

66
object ProjectSettings extends AutoPlugin {
7-
final val PekkoV = "1.0.3"
7+
final val PekkoV = "1.1.3"
88
final val scala212V = "2.12.18"
99
final val scala213V = "2.13.11"
1010
final val scalaV = scala213V
11-
final val ScalazV = "7.3.7"
12-
final val ScalaTestV = "3.2.15"
13-
final val ScalaXmlV = "2.1.0"
14-
final val LogbackV = "1.4.7"
11+
final val ScalazV = "7.3.8"
12+
final val ScalaTestV = "3.2.19"
13+
final val ScalaXmlV = "2.3.0"
14+
final val LogbackV = "1.3.15"
1515

1616
override def requires = plugins.JvmPlugin && SbtScalariform
1717
override def trigger = allRequirements

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
sbt.version=1.3.1
16+
sbt.version=1.5.8

sbt-publish.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414
#
1515

16-
sbt clean +publish
16+
sbt clean +publishSigned

version.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version := "1.2.0"
1+
version := "1.2.1-SNAPSHOT"

0 commit comments

Comments
 (0)