Skip to content

Commit 54c87c4

Browse files
committed
chore(version): prepare next release version
1 parent 5a7fd90 commit 54c87c4

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name := "mongocamp-driver-mongodb"
1+
name := "mongodb-driver"
22

33
crossScalaVersions := Seq("2.13.8", "2.12.15")
44

@@ -12,7 +12,7 @@ lazy val mongodb = (project in file("."))
1212
.enablePlugins(BuildInfoPlugin)
1313
.settings(
1414
buildInfoKeys ++= Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion),
15-
buildInfoPackage := "dev.mongocamp.driver.mongodb"
15+
buildInfoPackage := "dev.mongocamp"
1616
)
1717

1818
lazy val docs = (project in file("docs"))
@@ -22,13 +22,13 @@ lazy val docs = (project in file("docs"))
2222
.settings(
2323
name := "simple mongodb docs",
2424
scalaVersion := "2.13.7",
25-
libraryDependencies += "com.sfxcode.nosql" % "simple-mongo_2.13" % "2.3.0",
26-
libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.8.4",
25+
libraryDependencies += "dev.mongocamp" % "mongodb-driver_2.13" % "2.4.0",
26+
libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.8.4",
2727
publish / skip := true,
2828
ghpagesNoJekyll := true,
2929
git.remoteRepo := "git@github.com:mongocamp/mongocampdb.git",
3030
Compile / paradoxMaterialTheme ~= {
31-
_.withRepository(uri("https://github.com/sfxcode/mongocamp"))
31+
_.withRepository(uri("https://github.com/MongoCamp/mongodb-driver"))
3232
},
3333
(Compile / paradoxMarkdownToHtml / excludeFilter) := (Compile / paradoxMarkdownToHtml / excludeFilter).value ||
3434
ParadoxPlugin.InDirectoryFilter((Compile / paradox / sourceDirectory).value / "includes")

release.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sbt.url
22

3-
organization := "com.sfxcode.nosql"
4-
organizationHomepage := Some(url("https://github.com/sfxcode"))
3+
organization := "dev.mongocamp"
4+
organizationHomepage := Some(url("https://github.com/mongocamp"))
55

66
publishMavenStyle := true
77

@@ -18,7 +18,7 @@ developers := List(
1818
Developer(
1919
id = "mongocamp",
2020
name = "Tom Lamers",
21-
email = "tom@mongocamp.com",
21+
email = "tom@sfxcode.com",
2222
url = url("https://github.com/sfxcode")
2323
)
2424
)

src/main/resources/reference.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

2-
com.sfxcode.nosql.mongo.sync {
2+
dev.mongocamp.mongodb.sync {
33
maxWait = 600
44
syncColumnLastSync = "_lastSync"
55
syncColumnLastUpdate = "_lastUpdate"
66
writeSyncLogOnMaster = false
77
syncLogTableName = "mongo-sync-log"
8-
}
8+
}

src/main/scala/dev/mongocamp/driver/mongodb/sync/MongoSyncOperation.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,17 +97,17 @@ case class MongoSyncOperation(
9797

9898
object MongoSyncOperation extends ConfigHelper {
9999
val MaxWaitDefault = 600
100-
val MaxWait: Int = intConfig(configPath = "com.sfxcode.nosql.mongo.sync", key = "maxWait", default = MaxWaitDefault)
100+
val MaxWait: Int = intConfig(configPath = "dev.mongocamp.mongodb.sync", key = "maxWait", default = MaxWaitDefault)
101101

102102
val SyncColumnLastSync: String =
103-
stringConfig(configPath = "com.sfxcode.nosql.mongo.sync", key = "syncColumnLastSync", default = "_lastSync").get
103+
stringConfig(configPath = "dev.mongocamp.mongodb.sync", key = "syncColumnLastSync", default = "_lastSync").get
104104
val SyncColumnLastUpdate: String =
105-
stringConfig(configPath = "com.sfxcode.nosql.mongo.sync", key = "syncColumnLastUpdate", default = "_lastUpdate").get
105+
stringConfig(configPath = "dev.mongocamp.mongodb.sync", key = "syncColumnLastUpdate", default = "_lastUpdate").get
106106

107-
val WriteSyncLogOnMaster = booleanConfig(configPath = "com.sfxcode.nosql.mongo.sync", key = "writeSyncLogOnMaster")
107+
val WriteSyncLogOnMaster = booleanConfig(configPath = "dev.mongocamp.mongodb.sync", key = "writeSyncLogOnMaster")
108108
val SyncLogTableName: String =
109109
stringConfig(
110-
configPath = "com.sfxcode.nosql.mongo.sync",
110+
configPath = "dev.mongocamp.mongodb.sync",
111111
key = "syncLogTableName",
112112
default = "mongodb-sync-log"
113113
).get

src/test/resources/application.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
test.mongo.database = "test"
22

3-
com.sfxcode.nosql.mongo.sync.writeSyncLogOnMaster = true
3+
dev.mongocamp.mongodb.sync.writeSyncLogOnMaster = true
44

55

66
unit.test.mongo {

0 commit comments

Comments
 (0)