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

Commit c9cccdb

Browse files
Prepare v2.7.0 release
- Increment version number in mix.exs - Update README.md to suggest 2.7 releases - Consolidate changes in CHANGELOG.md
1 parent 03a6cc4 commit c9cccdb

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

CHANGELOG.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10-
### Fixed
11-
12-
- Phoenix Channels integration with Phoneix 1.3+ will no longer fail if the
13-
payload of a channel message is a list
14-
15-
### Changed
16-
17-
- `Timber.LogEntry.new/4` will fetch the global context and merge it into the
18-
local metadata context. The local context will override the global context
19-
based on the rules for `Timber.Context.merge/2`
20-
- Phoenix Channels integration will now accept _any_ channel message payload.
21-
(Previously, non-map types were dropped and replaced with an empty map.)
10+
## [2.7.0] - 2018-03-22
2211

2312
### Added
2413

@@ -31,12 +20,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3120
`Timber.CurrentContext.load/0` was used before, and `Timber.LocalContext.put/1`
3221
should be used where `Timber.CurrentContext.save/1` was used.
3322

23+
### Changed
24+
25+
- `Timber.LogEntry.new/4` will fetch the global context and merge it into the
26+
local metadata context. The local context will override the global context
27+
based on the rules for `Timber.Context.merge/2`
28+
- Phoenix Channels integration will now accept _any_ channel message payload.
29+
(Previously, non-map types were dropped and replaced with an empty map.)
30+
3431
### Deprecated
3532

3633
- `Timber.CurrentContext` has been deprecated in favor of `Timber.LocalContext`;
3734
the new name better reflects the purpose of the module. Use of
3835
`Timber.CurrentContext` will still be supported for the lifetime of v2
3936

37+
### Fixed
38+
39+
- Phoenix Channels integration with Phoneix 1.3+ will no longer fail if the
40+
payload of a channel message is a list
41+
4042
## [2.6.1] - 2017-10-02
4143

4244
### Fixed
@@ -95,7 +97,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
9597
`Timber.Integrations.PhoenixInstrumenter`. This will suppress log lines
9698
from being written for any controller/action pair.
9799

98-
[Unreleased]: https://github.com/timberio/timber-elixir/compare/v2.6.1...HEAD
100+
[Unreleased]: https://github.com/timberio/timber-elixir/compare/v2.7.0...HEAD
101+
[2.6.1]: https://github.com/timberio/timber-elixir/compare/v2.6.1...v2.7.0
99102
[2.6.1]: https://github.com/timberio/timber-elixir/compare/v2.6.0...v2.6.1
100103
[2.6.0]: https://github.com/timberio/timber-elixir/compare/v2.5.6...v2.6.0
101104
[2.5.6]: https://github.com/timberio/timber-elixir/compare/v2.5.5...v2.5.6

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ you more productive.
3232
end
3333

3434
def deps do
35-
[{:timber, "~> 2.5"}]
35+
[{:timber, "~> 2.7"}]
3636
end
3737
```
3838

mix.exs

Lines changed: 1 addition & 1 deletion
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.6.1"
12+
@version "2.7.0"
1313

1414
# Project manifest for Mix
1515
#

0 commit comments

Comments
 (0)