We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de10ad6 commit 4fbf8a0Copy full SHA for 4fbf8a0
RELEASE-NOTES.md
@@ -1,5 +1,9 @@
1
# gocosmos release notes
2
3
+## 2022-12-02 - v0.1.7
4
+
5
+- REST client: fix a bug where function `QueryDocuments` does not return all documents if the query is cross-partition.
6
7
## 2022-02-16 - v0.1.6
8
9
- REST client & Driver for `database/sql`: fix a bug in function `ReplaceOfferForResource` caused by a change from v0.1.5.
gocosmos.go
@@ -1,9 +1,7 @@
-/*
-Package gocosmos provides database/sql driver and a REST API client for Azure Cosmos DB SQL API.
-*/
+// Package gocosmos provides database/sql driver and a REST API client for Azure Cosmos DB SQL API.
package gocosmos
const (
// Version of package gocosmos.
- Version = "0.1.6"
+ Version = "0.1.7"
)
0 commit comments