File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## 0.9.1 (2022-05-27)
9
+ * Bugfix
10
+ * add backward compatible for Elixir < 1.13 (thanks to ja-jimenez)
11
+
8
12
## 0.9.0 (2022-05-21)
9
13
* Enhancements
10
14
* add colored log output
Original file line number Diff line number Diff line change @@ -1824,7 +1824,8 @@ defmodule Mongo do
1824
1824
end
1825
1825
1826
1826
defp to_iodata ( doc ) do
1827
- opts = Inspect.Opts . new ( [ ] )
1827
+ default_inspect_fun = :persistent_term . get ( { Inspect.Opts , :inspect_fun } , & Inspect . inspect / 2 )
1828
+ opts = % Inspect.Opts { inspect_fun: default_inspect_fun }
1828
1829
1829
1830
doc =
1830
1831
doc
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule Mongodb.Mixfile do
2
2
use Mix.Project
3
3
4
4
@ source_url "https://github.com/zookzook/elixir-mongodb-driver"
5
- @ version "0.9.0 "
5
+ @ version "0.9.1 "
6
6
7
7
def project ( ) do
8
8
[
You can’t perform that action at this time.
0 commit comments