From baeca39afd5476d8e1cb58e1618b754637fd12f9 Mon Sep 17 00:00:00 2001 From: Arnaldo Cesco Date: Thu, 28 Sep 2023 16:08:59 +0200 Subject: [PATCH 1/2] Deps: update astarte_core Signed-off-by: Arnaldo Cesco --- mix.exs | 2 +- mix.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index fbde309..0d0dba3 100644 --- a/mix.exs +++ b/mix.exs @@ -64,7 +64,7 @@ defmodule Astarte.DataAccess.Mixfile do defp astarte_required_modules(_) do [ - {:astarte_core, github: "astarte-platform/astarte_core", branch: "release-1.1"} + {:astarte_core, "~> 1.1.1"} ] end diff --git a/mix.lock b/mix.lock index efdf8f0..4b80057 100644 --- a/mix.lock +++ b/mix.lock @@ -1,5 +1,5 @@ %{ - "astarte_core": {:git, "https://github.com/astarte-platform/astarte_core.git", "21d3b7cac1c237c094e68fee7f4a0937768fd97c", [branch: "release-1.1"]}, + "astarte_core": {:hex, :astarte_core, "1.1.1", "165b86cc965f51586e3141add9433845659a05373eb04e85db2837473c59cab5", [:mix], [{:cyanide, "~> 2.0", [hex: :cyanide, repo: "hexpm", optional: false]}, {:ecto, "~> 3.4", [hex: :ecto, repo: "hexpm", optional: false]}, {:ecto_morph, "~> 0.1.23", [hex: :ecto_morph, repo: "hexpm", optional: false]}, {:elixir_uuid, "~> 1.2", [hex: :elixir_uuid, repo: "hexpm", optional: false]}, {:jason, "~> 1.2", [hex: :jason, repo: "hexpm", optional: false]}, {:protobuf, "~> 0.12", [hex: :protobuf, repo: "hexpm", optional: false]}], "hexpm", "9c36070dc90b5f706d41d25d35f090f1c02ce67f01b2ecb4d5bccf0c6254beba"}, "castore": {:hex, :castore, "0.1.9", "eb08a94c12ebff92a92d844c6ccd90728dc7662aab9bdc8b3b785ba653c499d5", [:mix], [], "hexpm", "99c3a38ad9c0bab03fee1418c98390da1a31f3b85e317db5840d51a1443d26c8"}, "certifi": {:hex, :certifi, "2.6.1", "dbab8e5e155a0763eea978c913ca280a6b544bfa115633fa20249c3d396d9493", [:rebar3], [], "hexpm", "524c97b4991b3849dd5c17a631223896272c6b0af446778ba4675a1dff53bb7e"}, "connection": {:hex, :connection, "1.1.0", "ff2a49c4b75b6fb3e674bfc5536451607270aac754ffd1bdfe175abe4a6d7a68", [:mix], [], "hexpm", "722c1eb0a418fbe91ba7bd59a47e28008a189d47e37e0e7bb85585a016b2869c"}, From 41317f29d6f0f1996dc2cd23003be2513c500424 Mon Sep 17 00:00:00 2001 From: Arnaldo Cesco Date: Thu, 28 Sep 2023 16:09:40 +0200 Subject: [PATCH 2/2] Prepare 1.1.1 release Signed-off-by: Arnaldo Cesco --- CHANGELOG.md | 2 +- mix.exs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e55b6cb..91c1187 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.1.1] - Unreleased +## [1.1.1] - 2023-10-03 ### Fixed - Don't crash when retrieving the interface version in a device whose introspection is empty. diff --git a/mix.exs b/mix.exs index 0d0dba3..ddf7e5b 100644 --- a/mix.exs +++ b/mix.exs @@ -22,7 +22,7 @@ defmodule Astarte.DataAccess.Mixfile do def project do [ app: :astarte_data_access, - version: "1.1.0", + version: "1.1.1", elixir: "~> 1.14", start_permanent: Mix.env() == :prod, test_coverage: [tool: ExCoveralls],