File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
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.8.1 (2021-xx-xx)
9
+ * Enhancements
10
+ * Fix for serializing BSON Regex without options (thanks to MillionIntegrals)
11
+ * Misc doc changes (thanks to kianmeng)
8
12
9
13
## 0.8.0 (2021-11-07) (0.7.5 was not published)
10
14
* Enhancements
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ defmodule BSON.TypesTest do
44
44
45
45
test "inspect BSON.Regex" do
46
46
value = % BSON.Regex { pattern: "abc" }
47
- assert inspect ( value ) == "#BSON.Regex<\" abc\" >"
47
+ assert inspect ( value ) == "#BSON.Regex<\" abc\" , \" \" >"
48
48
49
49
value = % BSON.Regex { pattern: "abc" , options: "i" }
50
50
assert inspect ( value ) == "#BSON.Regex<\" abc\" , \" i\" >"
You can’t perform that action at this time.
0 commit comments