Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
beatrichartz committed Sep 24, 2023
1 parent bd70ed2 commit 4f76a8b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 3.1.0 (2023-09-24)
- Strict mode: Exception messages of _thrown_ exceptions are now redacted by default to avoid data unintentionally leaking into logs.
This behaviour change is not considered to be breaking backwards compatibility since source data presented in exeption messages is
not considered part of the `CSV` public API.
- Option to (un)redact exception messages [contributed in [#122](https://github.com/beatrichartz/csv/pull/124) by [@taylor-redden-papa](https://github.com/taylor-redden-papa)

## 3.0.5 (2022-12-03)
- Exclude dialyzer files from library package [contributed in [#121](https://github.com/beatrichartz/csv/pull/121) by [@milmazz](https://github.com/milmazz)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

Add
```elixir
{:csv, "~> 3.0"}
{:csv, "~> 3.1"}
```
to your deps in `mix.exs` like so:

```elixir
defp deps do
[{:csv, "~> 3.0"}]
[{:csv, "~> 3.1"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule CSV.Mixfile do
def project do
[
app: :csv,
version: "3.0.5",
version: "3.1.0",
elixir: "~> 1.5",
deps: deps(),
package: package(),
Expand Down

0 comments on commit 4f76a8b

Please sign in to comment.