From 9787ab67b0ebebe7e55978a1b04e125d315b3743 Mon Sep 17 00:00:00 2001 From: Robin van der Vleuten Date: Wed, 13 Mar 2024 14:49:27 +0100 Subject: [PATCH] Release v0.4.0 --- .gitignore | 2 +- CHANGELOG.md | 2 +- README.md | 4 ++-- mix.exs | 13 +++++++++++-- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 6bdd8bd..8224c01 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,6 @@ /cover/ /deps/ /doc/ +/dsmr-*.tar /erl_crash.dump -/ex_dsmr-*.tar /src/*.erl diff --git a/CHANGELOG.md b/CHANGELOG.md index aa49885..a4e0c74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index d35cf7d..4680fbb 100644 --- a/README.md +++ b/README.md @@ -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/) @@ -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 ``` diff --git a/mix.exs b/mix.exs index aade446..260b068 100644 --- a/mix.exs +++ b/mix.exs @@ -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 [ @@ -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}