You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ you are able to investigate and fix them!
71
71
To get started with ScalaSql, add it to your `build.sc` file as follows:
72
72
73
73
```scala
74
-
ivy"com.lihaoyi::scalasql:0.2.1"
74
+
ivy"com.lihaoyi::scalasql:0.2.2"
75
75
```
76
76
77
77
ScalaSql supports Scala 2.13.x and >=3.6.2
@@ -84,7 +84,7 @@ Add the following to your `build.sc` file as follows:
84
84
85
85
<!-- TODO: scalasql-simple? -->
86
86
```scala
87
-
ivy"com.lihaoyi::scalasql-namedtuples:0.2.1"
87
+
ivy"com.lihaoyi::scalasql-namedtuples:0.2.2"
88
88
```
89
89
90
90
And taking the example above, the only thing that needs to change is the following:
@@ -177,6 +177,10 @@ And you now have the option to return named tuples from queries:
177
177
178
178
## Changelog
179
179
180
+
### 0.2.2
181
+
182
+
* Adding COUNT and COUNT(DISTINCT) aggregation support [#97](https://github.com/com-lihaoyi/scalasql/pull/97)
183
+
180
184
### 0.2.1
181
185
182
186
* Initial support for Microsoft SQL Server via `scalasql.dialects.MsSqlDialect`[#94](https://github.com/com-lihaoyi/scalasql/pull/94)
0 commit comments