Current section

2 Versions

Jump to

Compare versions

4 files changed
+14 additions
-6 deletions
  @@ -6,11 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6 6
7 7 ## [Unreleased]
8 8
9 + ## [0.1.1]
10 +
11 + ### Changed
12 +
13 + - Setup codecov.io to collect test coverage reports
14 + - Upgrade dependencies
15 +
9 16 ## [0.1.0]
10 17
11 18 ### Added
12 19
13 20 - Release package.
14 21
15 - [Unreleased]: https://github.com/finbits/telegraf-elixir/compare/v0.1.0...HEAD
22 + [Unreleased]: https://github.com/finbits/telegraf-elixir/compare/v0.1.1...HEAD
23 + [0.1.1]: https://github.com/finbits/telegraf-elixir/releases/tag/v0.1.1
16 24 [0.1.0]: https://github.com/finbits/telegraf-elixir/releases/tag/v0.1.0
  @@ -5,8 +5,8 @@
5 5 Telegraf client.
6 6
7 7 [![Hex.pm Version](http://img.shields.io/hexpm/v/telegraf.svg?style=flat)](https://hex.pm/packages/telegraf)
8 - [![CI](https://github.com/finbits/telegraf/workflows/CI/badge.svg?branch=main)](https://github.com/thiamsantos/telegraf/actions?query=branch%3Amain)
9 - [![Coverage Status](https://coveralls.io/repos/github/finbits/telegraf/badge.svg?branch=main)](https://coveralls.io/github/thiamsantos/telegraf?branch=main)
8 + [![CI](https://github.com/Finbits/telegraf-elixir/workflows/CI/badge.svg?branch=main)](https://github.com/Finbits/telegraf-elixir/actions?query=branch%3Amain)
9 + [![codecov](https://codecov.io/gh/Finbits/telegraf-elixir/branch/main/graph/badge.svg?token=wiZnjguSRx)](https://codecov.io/gh/Finbits/telegraf-elixir)
10 10
11 11 [Checkout the documentation](https://hexdocs.pm/telegraf) for more information.
12 12
  @@ -17,7 +17,7 @@ The package can be installed by adding `telegraf` to your list of dependencies i
17 17 ```elixir
18 18 def deps do
19 19 [
20 - {:telegraf, "~> 0.1.0"}
20 + {:telegraf, "~> 0.1.1"}
21 21 ]
22 22 end
23 23 ```
  @@ -26,4 +26,4 @@
26 26 {<<"optional">>,false},
27 27 {<<"repository">>,<<"hexpm">>},
28 28 {<<"requirement">>,<<"~> 0.4.0">>}]]}.
29 - {<<"version">>,<<"0.1.0">>}.
29 + {<<"version">>,<<"0.1.1">>}.
  @@ -2,7 +2,7 @@ defmodule Telegraf.MixProject do
2 2 use Mix.Project
3 3
4 4 @name "Telegraf"
5 - @version "0.1.0"
5 + @version "0.1.1"
6 6 @description "Send metrics to telegraf"
7 7 @repo_url "https://github.com/Finbits/telegraf-elixir"