Skip to content

Commit

Permalink
ci: update version after release
Browse files Browse the repository at this point in the history
  • Loading branch information
MongoCamp CI committed Oct 21, 2023
1 parent a522701 commit 73390b4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package dev.mongocamp.server.database

import com.mongodb.event.{CommandListener, ConnectionPoolListener}
import com.mongodb.event.{ CommandListener, ConnectionPoolListener }
import dev.mongocamp.driver.mongodb.bson.codecs.CustomCodecProvider
import dev.mongocamp.driver.mongodb.database.{DatabaseProvider, MongoConfig}
import dev.mongocamp.driver.mongodb.database.{ DatabaseProvider, MongoConfig }
import dev.mongocamp.server.config.DefaultConfigurations
import dev.mongocamp.server.library.BuildInfo
import dev.mongocamp.server.model.MongoCampConfiguration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,13 @@ trait ConfigurationRead extends LazyLogging {

private def configurationToDocument(configToInsert: MongoCampConfiguration): Document = {
val document = documentFromScalaMap(
Map("key" -> configToInsert.key, "value" -> configToInsert.value, "configType" -> configToInsert.configType, "comment" -> configToInsert.comment, "needsRestartForActivation" -> configToInsert.needsRestartForActivation)
Map(
"key" -> configToInsert.key,
"value" -> configToInsert.value,
"configType" -> configToInsert.configType,
"comment" -> configToInsert.comment,
"needsRestartForActivation" -> configToInsert.needsRestartForActivation
)
)
document
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name" : "mongocamp-server",
"organization" : "dev.mongocamp",
"version" : "1.5.6",
"version" : "1.5.7.snapshot",
"description" : "",
"directories" : {
"doc" : "docs"
Expand Down

0 comments on commit 73390b4

Please sign in to comment.