Skip to content

Commit 65cd1c5

Browse files
committed
Merge branch 'master' into sessions
2 parents 5dd5137 + e7e9533 commit 65cd1c5

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.5.6
2+
3+
* Bug Fixes
4+
* Fixed a match error in `after_fun` of cursor module
5+
* Fixed a match error in the result of function `Monitor.force_check`
6+
* Resolved decode problem for the Binary (Old) BinData subtype
7+
8+
* Enhancements
9+
* Added support for `Mongo.BulkWriteResult`
10+
111
## 0.5.5
212

313
* Bug Fixes

lib/mongo/cursor.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@ defmodule Mongo.Cursor do
302302
fn
303303
state(cursor: 0) -> :ok
304304
state(cursor: cursor, coll: coll, conn: conn) -> kill_cursors(conn, only_coll(coll), [cursor], opts)
305+
{:error, error} = error -> error
305306
end
306307
end
307308

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Mongodb.Mixfile do
22
use Mix.Project
33

4-
@version "0.5.5"
4+
@version "0.5.6"
55

66
def project() do
77
[app: :mongodb_driver,

0 commit comments

Comments
 (0)