Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robinvdvleuten committed Mar 13, 2024
1 parent 7c878d4 commit 9787ab6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
/cover/
/deps/
/doc/
/dsmr-*.tar
/erl_crash.dump
/ex_dsmr-*.tar
/src/*.erl
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Changelog

This project adheres to [Semantic Versioning](http://semver.org/).
Every release is documented on the Github [Releases](https://github.com/mijnverbruik/ex_dsmr/releases) page.
Every release is documented on the Github [Releases](https://github.com/mijnverbruik/dsmr/releases) page.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DSMR

[![Build Status](https://img.shields.io/github/actions/workflow/status/mijnverbruik/ex_dsmr/test.yml?branch=main&style=flat-square)](https://github.com/mijnverbruik/ex_dsmr/actions?query=workflow%3Atest)
[![Build Status](https://img.shields.io/github/actions/workflow/status/mijnverbruik/dsmr/test.yml?branch=main&style=flat-square)](https://github.com/mijnverbruik/dsmr/actions?query=workflow%3Atest)
[![Hex.pm](https://img.shields.io/hexpm/v/dsmr.svg?style=flat-square)](https://hex.pm/packages/dsmr)
[![Hexdocs.pm](https://img.shields.io/badge/hex-docs-blue.svg?style=flat-square)](https://hexdocs.pm/dsmr/)

Expand Down Expand Up @@ -68,7 +68,7 @@ Add `dsmr` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:dsmr, "~> 0.3.0"}
{:dsmr, "~> 0.4"}
]
end
```
Expand Down
13 changes: 11 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
defmodule DSMR.MixProject do
use Mix.Project

@source_url "https://github.com/mijnverbruik/ex_dsmr"
@version "0.3.0"
@source_url "https://github.com/mijnverbruik/dsmr"
@version "0.4.0"

def project do
[
Expand Down Expand Up @@ -46,6 +46,15 @@ defmodule DSMR.MixProject do

defp package() do
[
files: [
"lib",
"src/dsmr_parser.yrl",
"mix.exs",
"README.md",
"LICENSE",
"CHANGELOG.md",
".formatter.exs"
],
licenses: ["Apache-2.0"],
maintainers: ["Robin van der Vleuten"],
links: %{"GitHub" => @source_url}
Expand Down

0 comments on commit 9787ab6

Please sign in to comment.