Skip to content
This repository was archived by the owner on Dec 8, 2020. It is now read-only.

Commit 77c9319

Browse files
Increment version to 2.1.0
1 parent bf8c752 commit 77c9319

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ For a complete overview, see the [Timber for Elixir docs](https://timber.io/docs
5858
end
5959

6060
def deps do
61-
[{:timber, "~> 2.0"}]
61+
[{:timber, "~> 2.1"}]
6262
end
6363
```
6464

@@ -180,4 +180,4 @@ encouraged. In cases where the data is meaningful, consider [logging a custom ev
180180

181181
<p align="center" style="background: #221f40;">
182182
<a href="http://github.com/timberio/timber-elixir"><img src="http://files.timber.io/images/ruby-library-readme-log-truth.png" height="947" /></a>
183-
</p>
183+
</p>

UPGRADING.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
This documents outlines how to upgrade from major versions of Timber
44

5+
## 2.0 to 2.1
6+
7+
Custom HTTP clients have been deprecated as of version 2.1.0. You can remove the
8+
`:http_client` key from any Timber configuration. For example, the following:
9+
10+
```elixir
11+
config :timber,
12+
api_key: "123",
13+
http_client: Timber.HTTPClients.Hackney
14+
```
15+
16+
can become:
17+
18+
```elixir
19+
config :timber,
20+
api_key: "123"
21+
```
22+
523
## 1.x to 2.X
624

725
The 2.X introduces a number of enhancements and improvements. You can read more about the
@@ -15,4 +33,4 @@ To upgrade, please follow these steps:
1533
You can locate your api key by following this guide:
1634
https://timber.io/docs/app/advanced/api-keys/
1735

18-
If you have *any* issue, please reach out to us: [email protected]
36+
If you have *any* issue, please reach out to us: [email protected]

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defmodule Timber.Mixfile do
99

1010
@source_url "https://github.com/timberio/timber-elixir"
1111
@homepage_url "https://github.com/timberio/timber-elixir"
12-
@version "2.0.2"
12+
@version "2.1.0"
1313

1414
# Project manifest for Mix
1515
#

0 commit comments

Comments
 (0)