From 767fb2cb0d88329b90a3bb869d94afceb8b9d589 Mon Sep 17 00:00:00 2001 From: nelsonic Date: Thu, 30 Mar 2023 14:28:38 +0100 Subject: [PATCH] bump package version to 1.11.0 release support for calendar dates https://github.com/dwyl/useful/pull/45 --- .github/dependabot.yml | 10 ++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0dc7e4e..b32e4c5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,3 +6,13 @@ updates: interval: weekly time: "17:00" timezone: Europe/London + ignore: + # ignore all patch updates in dev dependencies ref: github.com/dwyl/technology-stack/issues/126 [alphabetical list] + - dependency-name: "credo" + update-types: ["version-update:semver-patch"] + - dependency-name: "excoveralls" + update-types: ["version-update:semver-patch"] + - dependency-name: "ex_doc" + update-types: ["version-update:semver-patch"] + - dependency-name: "plug" + update-types: ["version-update:semver-patch"] \ No newline at end of file diff --git a/README.md b/README.md index 35d803e..bc4d44f 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Install by adding `useful` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:useful, "~> 1.10.0"} + {:useful, "~> 1.11.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 3deb342..bcc60bc 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Useful.MixProject do [ app: :useful, description: "A collection of useful functions", - version: "1.10.0", + version: "1.11.0", elixir: "~> 1.10", start_permanent: Mix.env() == :prod, deps: deps(),