From 83ea733136abc20ef297cb9e95c7cafdedb5daa7 Mon Sep 17 00:00:00 2001 From: Davide Bettio Date: Mon, 4 Jul 2022 17:06:01 +0200 Subject: [PATCH 1/2] Update deps Just bump astarte_core version. Signed-off-by: Davide Bettio --- mix.exs | 2 +- mix.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index 883600d..466f59e 100644 --- a/mix.exs +++ b/mix.exs @@ -50,7 +50,7 @@ defmodule Astarte.Device.MixProject do # Run "mix help deps" to learn about dependencies. defp deps do [ - {:astarte_core, "~> 1.0.2"}, + {:astarte_core, "~> 1.0.3"}, {:certifi, "~> 2.5"}, {:hackney, "~> 1.15"}, {:jason, "~> 1.1"}, diff --git a/mix.lock b/mix.lock index 4677bbb..742630c 100644 --- a/mix.lock +++ b/mix.lock @@ -1,5 +1,5 @@ %{ - "astarte_core": {:hex, :astarte_core, "1.0.2", "df9d72907759d59dd45f31e480b6189788541b62073c1451520a21e42ee01387", [:mix], [{:cyanide, "~> 1.0", [hex: :cyanide, repo: "hexpm", optional: false]}, {:ecto, "~> 3.4", [hex: :ecto, repo: "hexpm", optional: false]}, {:elixir_uuid, "~> 1.2", [hex: :elixir_uuid, repo: "hexpm", optional: false]}, {:exprotobuf, "~> 1.2", [hex: :exprotobuf, repo: "hexpm", optional: false]}, {:gpb, "~> 4.12.0", [hex: :gpb, repo: "hexpm", optional: false]}, {:jason, "~> 1.2", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "b4f233e8bd57d8345adf39f7fd8cabe0fecab53dba6081f134960b1628969228"}, + "astarte_core": {:hex, :astarte_core, "1.0.3", "71f8f30e84ad8dec9874a62a5acd7a4c466c9a5a0794f466090f9bdbf779b088", [:mix], [{:cyanide, "~> 1.0", [hex: :cyanide, repo: "hexpm", optional: false]}, {:ecto, "~> 3.4", [hex: :ecto, repo: "hexpm", optional: false]}, {:elixir_uuid, "~> 1.2", [hex: :elixir_uuid, repo: "hexpm", optional: false]}, {:exprotobuf, "~> 1.2", [hex: :exprotobuf, repo: "hexpm", optional: false]}, {:gpb, "~> 4.12.0", [hex: :gpb, repo: "hexpm", optional: false]}, {:jason, "~> 1.2", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "4e2d131b9aa2e71ac96b5cbd0565c147ceaa23148424f3843fa67d9d850c683d"}, "certifi": {:hex, :certifi, "2.6.1", "dbab8e5e155a0763eea978c913ca280a6b544bfa115633fa20249c3d396d9493", [:rebar3], [], "hexpm", "524c97b4991b3849dd5c17a631223896272c6b0af446778ba4675a1dff53bb7e"}, "cyanide": {:hex, :cyanide, "1.0.1", "77c56aaeb5c5d794d5aa10be61f08a443207988bbddfd6a21b08f72c65cf193b", [:mix], [], "hexpm", "f5ea2d00a0211d6fee778b15b5aca2e003b2e8e7a1072fa4aafa2e75a6d6aae1"}, "decimal": {:hex, :decimal, "2.0.0", "a78296e617b0f5dd4c6caf57c714431347912ffb1d0842e998e9792b5642d697", [:mix], [], "hexpm", "34666e9c55dea81013e77d9d87370fe6cb6291d1ef32f46a1600230b1d44f577"}, From a70da2427e09ec3735c052a5546cdefd26368a90 Mon Sep 17 00:00:00 2001 From: Davide Bettio Date: Mon, 4 Jul 2022 17:07:20 +0200 Subject: [PATCH 2/2] Prepare 1.0.3 release Signed-off-by: Davide Bettio --- CHANGELOG.md | 2 ++ mix.exs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4021768..d4334b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.0.3] - 2022-07-04 + ## [1.0.2] - 2022-03-29 ## [1.0.1] - 2021-12-16 diff --git a/mix.exs b/mix.exs index 466f59e..7d4eedb 100644 --- a/mix.exs +++ b/mix.exs @@ -22,7 +22,7 @@ defmodule Astarte.Device.MixProject do def project do [ app: :astarte_device, - version: "1.0.2", + version: "1.0.3", elixir: "~> 1.11", start_permanent: Mix.env() == :prod, test_coverage: [tool: ExCoveralls],