Skip to content

Commit

Permalink
Bumped version to 2.6.34_RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmpp committed May 21, 2024
1 parent 99d9ef4 commit 73beaca
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ val buildSettings = Seq(
scalariformPreferences := scalariformPreferences.value
.setPreference(DanglingCloseParenthesis, Force)
.setPreference(AlignSingleLineCaseStatements, true),
version := "2.6.33",
version := "2.6.34_RC1",
scalaVersion := "2.13.13",
crossScalaVersions := Seq("2.13.8", "2.13.13"),
resolvers ++= Resolver.sonatypeOssRepos("snapshots"),
Expand Down
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ applications:
instances: 1
host: openolitortest
domain: applicationcloud.io
path: target/universal/openolitor-server-2.6.33.zip
path: target/universal/openolitor-server-2.6.34_RC1.zip
buildpack: https://github.com/cloudfoundry/java-buildpack.git
stack: cflinuxfs2
env:
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ openolitor {
}

smtp {
from = "info@openolitor.ch"
from = "this_is_my_customized_from "
endpoint = "localhost"
port = 1025
user = "info@openolitor.ch"
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</logger>

<!-- TO SEE SQL QUERY LOG-OUTPUT SWITCH THIS LEVEL TO DEBUG-->
<logger name="scalikejdbc" level="DEBUG" additivity="false">
<logger name="scalikejdbc" level="INFO" additivity="false">
<appender-ref ref="STDOUT"/>
</logger>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ trait ArbeitseinsatzRoutes extends BaseRouteService
} ~
path("arbeitsangebote" / arbeitsangebotIdPath / "archive") {
id =>
(put | post)(update[ArbeitsangebotModify, ArbeitsangebotId](id))
(put | post)(update[ArbeitsangebotModify, ArbeitsangebotId](id))
} ~
path("arbeitsangebote" / arbeitsangebotIdPath / "aktionen" / "duplizieren") {
id =>
Expand Down

0 comments on commit 73beaca

Please sign in to comment.