Skip to content

Commit b7c5692

Browse files
committed
0.2.7
1 parent 8bd1289 commit b7c5692

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

build.mill

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import mill._, scalalib._, publish._
1010

1111
val scala3 = "3.6.2"
1212
val scalaVersions = Seq("2.13.12", scala3)
13-
val scala3NamedTuples = "3.7.0"
13+
val scala3Simple = "3.7.0"
1414

1515
trait CommonBase extends ScalaModule with PublishModule with ScalafixModule { common =>
1616

@@ -50,11 +50,11 @@ trait CommonBase extends ScalaModule with PublishModule with ScalafixModule { co
5050
ivy"com.lihaoyi::utest:0.8.2",
5151
ivy"com.h2database:h2:2.2.224",
5252
ivy"org.xerial:sqlite-jdbc:3.43.0.0",
53-
ivy"org.testcontainers:postgresql:1.19.1",
53+
ivy"org.testcontainers:postgresql:1.21.4",
5454
ivy"org.postgresql:postgresql:42.6.0",
55-
ivy"org.testcontainers:mysql:1.19.1",
55+
ivy"org.testcontainers:mysql:1.21.4",
5656
ivy"mysql:mysql-connector-java:8.0.33",
57-
ivy"org.testcontainers:mssqlserver:1.19.1",
57+
ivy"org.testcontainers:mssqlserver:1.21.4",
5858
ivy"com.microsoft.sqlserver:mssql-jdbc:12.8.1.jre11",
5959
ivy"com.zaxxer:HikariCP:5.1.0"
6060
)
@@ -76,7 +76,7 @@ trait CommonBase extends ScalaModule with PublishModule with ScalafixModule { co
7676
trait Common extends CommonBase with CrossScalaModule
7777

7878
object `scalasql-simple` extends CommonBase {
79-
def scalaVersion: T[String] = scala3NamedTuples
79+
def scalaVersion: T[String] = scala3Simple
8080
def millSourcePath: os.Path = scalasql(scala3).millSourcePath / "simple"
8181
def moduleDeps: Seq[PublishModule] = Seq(scalasql(scala3))
8282

readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,10 @@ And you now have the option to return named tuples from queries:
177177

178178
## Changelog
179179

180+
### 0.2.7
181+
182+
* `scalasql-namedtuples` artifact is now named `scalasql-simple`
183+
180184
### 0.2.3
181185

182186
* Bump Sourcecode version so queries work in REPL [#101](https://github.com/com-lihaoyi/scalasql/pull/101)

0 commit comments

Comments
 (0)