Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 576 Bytes

CHANGELOG.md

File metadata and controls

24 lines (14 loc) · 576 Bytes

This project adheres to Semantic Versioning.

Prerelease versions

According to https://semver.org/#spec-item-4 0.x versions should not be considered as stable, anything can change at any time.

[Unreleased]

0.4.4 - 2018-06-18

  • Add timestamp field to all messages.

0.4.3 - 2018-05-28

  • Fixed double message keys:

      # before fix
      logger.info(message: 'test') # => "{ ...,"message":"Empty message","message":"test"}"
    
      # after fix
      logger.info(message: 'test') # => "{ ...,"message":"test"}"