Skip to content

Commit

Permalink
release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phcurado committed Jan 6, 2023
1 parent d4847e8 commit f5596a3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,8 @@ jobs:
- name: Run dialyzer
run: mix dialyzer
if: ${{ matrix.lint }}

- name: Run Coveralls
run: mix coveralls.github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<img src="logo.png" alt="parameter" width="150">

[![CI](https://github.com/phcurado/parameter/workflows/ci/badge.svg?branch=main)](https://github.com/phcurado/parameter/actions?query=branch%3Amain+workflow%3Aci)
[![Coverage Status](https://coveralls.io/repos/github/phcurado/parameter/badge.svg?branch=main)](https://coveralls.io/github/phcurado/parameter?branch=main)
[![Hex.pm](https://img.shields.io/hexpm/v/parameter)](https://hex.pm/packages/parameter)
[![HexDocs.pm](https://img.shields.io/badge/Docs-HexDocs-blue)](https://hexdocs.pm/parameter)
[![License](https://img.shields.io/hexpm/l/parameter.svg)](https://hex.pm/packages/parameter)
Expand Down Expand Up @@ -85,7 +86,7 @@ Add `parameter` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:parameter, "~> 0.9"}
{:parameter, "~> 0.10"}
]
end
```
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Parameter.MixProject do
use Mix.Project

@source_url "https://github.com/phcurado/parameter"
@version "0.9.0"
@version "0.10.0"

def project do
[
Expand Down Expand Up @@ -79,7 +79,7 @@ defmodule Parameter.MixProject do
Parameter.Types.Decimal,
Parameter.Types.Float,
Parameter.Types.Integer,
Parameter.Types.List,
Parameter.Types.Array,
Parameter.Types.Map,
Parameter.Types.NaiveDateTime,
Parameter.Types.String,
Expand Down

0 comments on commit f5596a3

Please sign in to comment.