@@ -71,7 +71,7 @@ you are able to investigate and fix them!
7171To get started with ScalaSql, add it to your ` build.sc ` file as follows:
7272
7373``` scala
74- ivy " com.lihaoyi::scalasql:0.1.20 "
74+ ivy " com.lihaoyi::scalasql:0.2.0 "
7575```
7676
7777ScalaSql supports Scala 2.13.x and >=3.6.2
@@ -84,7 +84,7 @@ Add the following to your `build.sc` file as follows:
8484
8585<!-- TODO: scalasql-simple? -->
8686``` scala
87- ivy " com.lihaoyi::scalasql-namedtuples:0.1.20 "
87+ ivy " com.lihaoyi::scalasql-namedtuples:0.2.0 "
8888```
8989
9090And taking the example above, the only thing that needs to change is the following:
@@ -131,6 +131,7 @@ And you now have the option to return named tuples from queries:
131131 * [ MySql] ( scalasql/test/src/example/MySqlExample.scala )
132132 * [ Sqlite] ( scalasql/test/src/example/SqliteExample.scala )
133133 * [ H2] ( scalasql/test/src/example/H2Example.scala )
134+ * [ Microsoft SQL Server] ( scalasql/test/src/example/MsSqlExample.scala )
134135 * [ HikariCP] ( scalasql/test/src/example/HikariCpExample.scala ) (and other connection pools)
135136
136137* [ ScalaSql Tutorial] ( docs/tutorial.md ) : a structured walkthrough of how to use ScalaSql,
@@ -176,6 +177,10 @@ And you now have the option to return named tuples from queries:
176177
177178## Changelog
178179
180+ ### 0.2.0
181+
182+ * Initial support for Microsoft SQL Server via ` scalasql.dialects.MsSqlDialect ` [ #94 ] ( https://github.com/com-lihaoyi/scalasql/pull/94 )
183+
179184### 0.1.20
180185
181186* Support for ` SimpleTable ` classes which do not need a ` T[_] ` higher kinded parameter,
0 commit comments