Skip to content

Commit

Permalink
Merge pull request #955 from eddbbt/prepare-1.2.rc0
Browse files Browse the repository at this point in the history
Prepare 1.2.rc0 release
  • Loading branch information
Annopaolo authored Jun 11, 2024
2 parents 1a9c203 + 36feb23 commit 35c877e
Show file tree
Hide file tree
Showing 30 changed files with 94 additions and 93 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

## [Unreleased]
## [1.2.0-rc.0] 11-06-2024
### Added
- [astarte_trigger_engine] Add `trigger_name` to envent payload
and mustache template
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Astarte

![](https://github.com/astarte-platform/astarte/workflows/Build%20and%20Test%20Astarte%20Apps/badge.svg?branch=master)
[![codecov](https://codecov.io/gh/astarte-platform/astarte/tree/master/graph/badge.svg)](https://codecov.io/gh/astarte-platform/astarte)
![](https://github.com/astarte-platform/astarte/workflows/Build%20and%20Test%20Astarte%20Apps/badge.svg?branch=v1.2.0-rc.0)
[![codecov](https://codecov.io/gh/astarte-platform/astarte/tag/v1.2.0-rc.0/graph/badge.svg)](https://codecov.io/gh/astarte-platform/astarte)

<img src="doc/images/mascotte.svg" align="left" width="160px" />Astarte is an Open Source IoT
platform focused on Data management and processing written in [Elixir](https://github.com/elixir-lang/elixir).
Expand Down Expand Up @@ -30,16 +30,16 @@ and [Cassandra](http://cassandra.apache.org/)/[ScyllaDB](https://www.scylladb.co

## Let's try it!

**This is the master branch, which is not guaranteed to always be in a usable state.**
**This is a dev branch, which is not guaranteed to always be in a usable state.**

**For production purposes we recommend using the latest stable release (currently [v1.1](https://github.com/astarte-platform/astarte/tree/release-1.1)), this branch should be used only for v1.2 development activities.**

Can't be easier. Pick your favorite machine with at least 4GB of free RAM, make sure it has
[Docker](https://www.docker.com/), and simply:

```sh
$ git clone https://github.com/astarte-platform/astarte.git && cd astarte
$ docker run -v $(pwd)/compose:/compose astarte/docker-compose-initializer:snapshot
$ git clone https://github.com/astarte-platform/astarte.git -b v1.2.0-rc.0 && cd astarte
$ docker run -v $(pwd)/compose:/compose astarte/docker-compose-initializer:1.1
$ docker compose pull
$ docker compose up -d
```
Expand All @@ -48,7 +48,7 @@ Make sure to use the latest stable release if you want a flawless experience.

You should be up and running in a matter of minutes. If you want a more thorough explanation and
find out how to access your new Astarte cluster and what you can do with it, [follow our "Astarte in
5 minutes" tutorial](https://docs.astarte-platform.org/astarte/latest/010-astarte_in_5_minutes.html) to
5 minutes" tutorial](https://docs.astarte-platform.org/astarte/1.2/010-astarte_in_5_minutes.html) to
get some fake or real devices to stream and process data while your tea gets ready.

## Sweet! Let's move it to production!
Expand All @@ -58,8 +58,8 @@ tricky, and requires some knowledge about the platform to make sure it won't bre

So, if you're serious about getting Astarte in your production environment, you might want to learn
more about it first. Start by [having a look at its
architecture](https://docs.astarte-platform.org/astarte/latest/001-intro_architecture.html) and
[finding out how it works](https://docs.astarte-platform.org/astarte/latest/001-intro_user.html). Once
architecture](https://docs.astarte-platform.org/astarte/1.2/001-intro_architecture.html) and
[finding out how it works](https://docs.astarte-platform.org/astarte/1.2/001-intro_user.html). Once
you feel confident, head over to the [Administration
Manual](https://docs.astarte-platform.org/astarte-kubernetes-operator/latest/001-intro_administrator.html).

Expand Down Expand Up @@ -109,4 +109,4 @@ needs.

Astarte source code is released under the Apache 2 License.

Check the LICENSE file for more information.
Check the LICENSE file for more information.
3 changes: 2 additions & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
| ------- | ------------------ |
| 0.10.x | :x: |
| 0.11.x | :x: |
| 1.0.x | :white_check_mark: |
| 1.0.x | :x: |
| 1.1.x | :white_check_mark: |
| 1.2.x | :white_check_mark: |

## Reporting a Vulnerability

Expand Down
8 changes: 4 additions & 4 deletions apps/astarte_appengine_api/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule Astarte.AppEngine.API.Mixfile do
[
app: :astarte_appengine_api,
elixir: "~> 1.15",
version: "1.2.0-dev",
version: "1.2.0-rc.0",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
test_coverage: [tool: ExCoveralls],
Expand Down Expand Up @@ -69,9 +69,9 @@ defmodule Astarte.AppEngine.API.Mixfile do

defp astarte_required_modules(_) do
[
{:astarte_core, github: "astarte-platform/astarte_core"},
{:astarte_data_access, github: "astarte-platform/astarte_data_access"},
{:astarte_rpc, github: "astarte-platform/astarte_rpc"}
{:astarte_core, github: "astarte-platform/astarte_core", tag: "v1.2.0-rc.0"},
{:astarte_data_access, github: "astarte-platform/astarte_data_access", tag: "v1.2.0-rc.0"},
{:astarte_rpc, github: "astarte-platform/astarte_rpc", tag: "v1.2.0-rc.0"}
]
end

Expand Down
6 changes: 3 additions & 3 deletions apps/astarte_appengine_api/mix.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
%{
"amqp": {:hex, :amqp, "3.3.0", "056d9f4bac96c3ab5a904b321e70e78b91ba594766a1fc2f32afd9c016d9f43b", [:mix], [{:amqp_client, "~> 3.9", [hex: :amqp_client, repo: "hexpm", optional: false]}], "hexpm", "8d3ae139d2646c630d674a1b8d68c7f85134f9e8b2a1c3dd5621616994b10a8b"},
"amqp_client": {:hex, :amqp_client, "3.12.10", "dcc0d5d0037fa2b486c6eb8b52695503765b96f919e38ca864a7b300b829742d", [:make, :rebar3], [{:credentials_obfuscation, "3.4.0", [hex: :credentials_obfuscation, repo: "hexpm", optional: false]}, {:rabbit_common, "3.12.10", [hex: :rabbit_common, repo: "hexpm", optional: false]}], "hexpm", "16a23959899a82d9c2534ed1dcf1fa281d3b660fb7f78426b880647f0a53731f"},
"astarte_core": {:git, "https://github.com/astarte-platform/astarte_core.git", "dc964b7d9b3a3a4e20127b763705d9e53bd88890", []},
"astarte_data_access": {:git, "https://github.com/astarte-platform/astarte_data_access.git", "6efd21dcab8c16affa1888cc5e9218ecf7df67f2", []},
"astarte_rpc": {:git, "https://github.com/astarte-platform/astarte_rpc.git", "c0d77760fb12256a23a2d00e1a119496a089fa9d", []},
"astarte_core": {:git, "https://github.com/astarte-platform/astarte_core.git", "3574f38f759e7b012060c66a46b594ac2cdb53c3", [tag: "v1.2.0-rc.0"]},
"astarte_data_access": {:git, "https://github.com/astarte-platform/astarte_data_access.git", "ea86a9683817b9384de418339dd3f15ab76f67db", [tag: "v1.2.0-rc.0"]},
"astarte_rpc": {:git, "https://github.com/astarte-platform/astarte_rpc.git", "31b008707a03f59d3a26b5977299230ac407fc53", [tag: "v1.2.0-rc.0"]},
"castore": {:hex, :castore, "1.0.7", "b651241514e5f6956028147fe6637f7ac13802537e895a724f90bf3e36ddd1dd", [:mix], [], "hexpm", "da7785a4b0d2a021cd1292a60875a784b6caef71e76bf4917bdee1f390455cf5"},
"certifi": {:hex, :certifi, "2.9.0", "6f2a475689dd47f19fb74334859d460a2dc4e3252a3324bd2111b8f0429e7e21", [:rebar3], [], "hexpm", "266da46bdb06d6c6d35fde799bcb28d36d985d424ad7c08b5bb48f5b5cdd4641"},
"connection": {:hex, :connection, "1.1.0", "ff2a49c4b75b6fb3e674bfc5536451607270aac754ffd1bdfe175abe4a6d7a68", [:mix], [], "hexpm", "722c1eb0a418fbe91ba7bd59a47e28008a189d47e37e0e7bb85585a016b2869c"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ info:
an impact on devices and their data. Most Astarte applications would want to
use this API to interact with devices, stream and receive data, and oversee
their fleet.
version: 1.2.0-dev
version: 1.2.0-rc.0
title: Astarte App Engine API
contact:
email: [email protected]
Expand Down
8 changes: 4 additions & 4 deletions apps/astarte_data_updater_plant/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ defmodule Astarte.DataUpdaterPlant.Mixfile do
[
app: :astarte_data_updater_plant,
elixir: "~> 1.15",
version: "1.2.0-dev",
version: "1.2.0-rc.0",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
Expand Down Expand Up @@ -68,9 +68,9 @@ defmodule Astarte.DataUpdaterPlant.Mixfile do

defp astarte_required_modules(_) do
[
{:astarte_core, github: "astarte-platform/astarte_core"},
{:astarte_data_access, github: "astarte-platform/astarte_data_access"},
{:astarte_rpc, github: "astarte-platform/astarte_rpc"}
{:astarte_core, github: "astarte-platform/astarte_core", tag: "v1.2.0-rc.0"},
{:astarte_data_access, github: "astarte-platform/astarte_data_access", tag: "v1.2.0-rc.0"},
{:astarte_rpc, github: "astarte-platform/astarte_rpc", tag: "v1.2.0-rc.0"}
]
end

Expand Down
8 changes: 4 additions & 4 deletions apps/astarte_data_updater_plant/mix.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
%{
"amqp": {:hex, :amqp, "3.3.0", "056d9f4bac96c3ab5a904b321e70e78b91ba594766a1fc2f32afd9c016d9f43b", [:mix], [{:amqp_client, "~> 3.9", [hex: :amqp_client, repo: "hexpm", optional: false]}], "hexpm", "8d3ae139d2646c630d674a1b8d68c7f85134f9e8b2a1c3dd5621616994b10a8b"},
"amqp_client": {:hex, :amqp_client, "3.12.10", "dcc0d5d0037fa2b486c6eb8b52695503765b96f919e38ca864a7b300b829742d", [:make, :rebar3], [{:credentials_obfuscation, "3.4.0", [hex: :credentials_obfuscation, repo: "hexpm", optional: false]}, {:rabbit_common, "3.12.10", [hex: :rabbit_common, repo: "hexpm", optional: false]}], "hexpm", "16a23959899a82d9c2534ed1dcf1fa281d3b660fb7f78426b880647f0a53731f"},
"astarte_core": {:git, "https://github.com/astarte-platform/astarte_core.git", "dc964b7d9b3a3a4e20127b763705d9e53bd88890", []},
"astarte_data_access": {:git, "https://github.com/astarte-platform/astarte_data_access.git", "6efd21dcab8c16affa1888cc5e9218ecf7df67f2", []},
"astarte_rpc": {:git, "https://github.com/astarte-platform/astarte_rpc.git", "c0d77760fb12256a23a2d00e1a119496a089fa9d", []},
"astarte_core": {:git, "https://github.com/astarte-platform/astarte_core.git", "3574f38f759e7b012060c66a46b594ac2cdb53c3", [tag: "v1.2.0-rc.0"]},
"astarte_data_access": {:git, "https://github.com/astarte-platform/astarte_data_access.git", "ea86a9683817b9384de418339dd3f15ab76f67db", [tag: "v1.2.0-rc.0"]},
"astarte_rpc": {:git, "https://github.com/astarte-platform/astarte_rpc.git", "31b008707a03f59d3a26b5977299230ac407fc53", [tag: "v1.2.0-rc.0"]},
"castore": {:hex, :castore, "1.0.7", "b651241514e5f6956028147fe6637f7ac13802537e895a724f90bf3e36ddd1dd", [:mix], [], "hexpm", "da7785a4b0d2a021cd1292a60875a784b6caef71e76bf4917bdee1f390455cf5"},
"certifi": {:hex, :certifi, "2.9.0", "6f2a475689dd47f19fb74334859d460a2dc4e3252a3324bd2111b8f0429e7e21", [:rebar3], [], "hexpm", "266da46bdb06d6c6d35fde799bcb28d36d985d424ad7c08b5bb48f5b5cdd4641"},
"connection": {:hex, :connection, "1.1.0", "ff2a49c4b75b6fb3e674bfc5536451607270aac754ffd1bdfe175abe4a6d7a68", [:mix], [], "hexpm", "722c1eb0a418fbe91ba7bd59a47e28008a189d47e37e0e7bb85585a016b2869c"},
Expand All @@ -22,8 +22,8 @@
"ecto_morph": {:hex, :ecto_morph, "0.1.27", "08dda130f23fe0b5893189dab17c0d791438c59fadf8edb996cad670199790d3", [:mix], [{:ecto, ">= 3.0.3", [hex: :ecto, repo: "hexpm", optional: false]}], "hexpm", "1f2152494c68c3458b8ad7ee316e2f2b414f3364d928c3da4cc2013e7eb23ca9"},
"elixir_uuid": {:hex, :elixir_uuid, "1.2.1", "dce506597acb7e6b0daeaff52ff6a9043f5919a4c3315abb4143f0b00378c097", [:mix], [], "hexpm", "f7eba2ea6c3555cea09706492716b0d87397b88946e6380898c2889d68585752"},
"erlex": {:hex, :erlex, "0.2.6", "c7987d15e899c7a2f34f5420d2a2ea0d659682c06ac607572df55a43753aa12e", [:mix], [], "hexpm", "2ed2e25711feb44d52b17d2780eabf998452f6efda104877a3881c2f8c0c0c75"},
"excoveralls": {:hex, :excoveralls, "0.16.1", "0bd42ed05c7d2f4d180331a20113ec537be509da31fed5c8f7047ce59ee5a7c5", [:mix], [{:hackney, "~> 1.16", [hex: :hackney, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "dae763468e2008cf7075a64cb1249c97cb4bc71e236c5c2b5e5cdf1cfa2bf138"},
"ex_rabbit_pool": {:git, "https://github.com/leductam/ex_rabbit_pool.git", "9951452ab51d36648b9a9d3373609e48d1379a0d", []},
"excoveralls": {:hex, :excoveralls, "0.16.1", "0bd42ed05c7d2f4d180331a20113ec537be509da31fed5c8f7047ce59ee5a7c5", [:mix], [{:hackney, "~> 1.16", [hex: :hackney, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "dae763468e2008cf7075a64cb1249c97cb4bc71e236c5c2b5e5cdf1cfa2bf138"},
"goldrush": {:hex, :goldrush, "0.1.9", "f06e5d5f1277da5c413e84d5a2924174182fb108dabb39d5ec548b27424cd106", [:rebar3], [], "hexpm", "99cb4128cffcb3227581e5d4d803d5413fa643f4eb96523f77d9e6937d994ceb"},
"hackney": {:hex, :hackney, "1.18.1", "f48bf88f521f2a229fc7bae88cf4f85adc9cd9bcf23b5dc8eb6a1788c662c4f6", [:rebar3], [{:certifi, "~> 2.9.0", [hex: :certifi, repo: "hexpm", optional: false]}, {:idna, "~> 6.1.0", [hex: :idna, repo: "hexpm", optional: false]}, {:metrics, "~> 1.0.0", [hex: :metrics, repo: "hexpm", optional: false]}, {:mimerl, "~> 1.1", [hex: :mimerl, repo: "hexpm", optional: false]}, {:parse_trans, "3.3.1", [hex: :parse_trans, repo: "hexpm", optional: false]}, {:ssl_verify_fun, "~> 1.1.0", [hex: :ssl_verify_fun, repo: "hexpm", optional: false]}, {:unicode_util_compat, "~> 0.7.0", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm", "a4ecdaff44297e9b5894ae499e9a070ea1888c84afdd1fd9b7b2bc384950128e"},
"idna": {:hex, :idna, "6.1.1", "8a63070e9f7d0c62eb9d9fcb360a7de382448200fbbd1b106cc96d3d8099df8d", [:rebar3], [{:unicode_util_compat, "~>0.7.0", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm", "92376eb7894412ed19ac475e4a86f7b413c1b9fbb5bd16dccd57934157944cea"},
Expand Down
8 changes: 4 additions & 4 deletions apps/astarte_housekeeping/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule Astarte.Housekeeping.Mixfile do
def project do
[
app: :astarte_housekeeping,
version: "1.2.0-dev",
version: "1.2.0-rc.0",
build_path: "_build",
config_path: "config/config.exs",
deps_path: "deps",
Expand Down Expand Up @@ -71,9 +71,9 @@ defmodule Astarte.Housekeeping.Mixfile do

defp astarte_required_modules(_) do
[
{:astarte_core, github: "astarte-platform/astarte_core"},
{:astarte_data_access, github: "astarte-platform/astarte_data_access"},
{:astarte_rpc, github: "astarte-platform/astarte_rpc"}
{:astarte_core, github: "astarte-platform/astarte_core", tag: "v1.2.0-rc.0"},
{:astarte_data_access, github: "astarte-platform/astarte_data_access", tag: "v1.2.0-rc.0"},
{:astarte_rpc, github: "astarte-platform/astarte_rpc", tag: "v1.2.0-rc.0"}
]
end

Expand Down
6 changes: 3 additions & 3 deletions apps/astarte_housekeeping/mix.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
%{
"amqp": {:hex, :amqp, "3.3.0", "056d9f4bac96c3ab5a904b321e70e78b91ba594766a1fc2f32afd9c016d9f43b", [:mix], [{:amqp_client, "~> 3.9", [hex: :amqp_client, repo: "hexpm", optional: false]}], "hexpm", "8d3ae139d2646c630d674a1b8d68c7f85134f9e8b2a1c3dd5621616994b10a8b"},
"amqp_client": {:hex, :amqp_client, "3.12.10", "dcc0d5d0037fa2b486c6eb8b52695503765b96f919e38ca864a7b300b829742d", [:make, :rebar3], [{:credentials_obfuscation, "3.4.0", [hex: :credentials_obfuscation, repo: "hexpm", optional: false]}, {:rabbit_common, "3.12.10", [hex: :rabbit_common, repo: "hexpm", optional: false]}], "hexpm", "16a23959899a82d9c2534ed1dcf1fa281d3b660fb7f78426b880647f0a53731f"},
"astarte_core": {:git, "https://github.com/astarte-platform/astarte_core.git", "dc964b7d9b3a3a4e20127b763705d9e53bd88890", []},
"astarte_data_access": {:git, "https://github.com/astarte-platform/astarte_data_access.git", "6efd21dcab8c16affa1888cc5e9218ecf7df67f2", []},
"astarte_rpc": {:git, "https://github.com/astarte-platform/astarte_rpc.git", "c0d77760fb12256a23a2d00e1a119496a089fa9d", []},
"astarte_core": {:git, "https://github.com/astarte-platform/astarte_core.git", "3574f38f759e7b012060c66a46b594ac2cdb53c3", [tag: "v1.2.0-rc.0"]},
"astarte_data_access": {:git, "https://github.com/astarte-platform/astarte_data_access.git", "ea86a9683817b9384de418339dd3f15ab76f67db", [tag: "v1.2.0-rc.0"]},
"astarte_rpc": {:git, "https://github.com/astarte-platform/astarte_rpc.git", "31b008707a03f59d3a26b5977299230ac407fc53", [tag: "v1.2.0-rc.0"]},
"castore": {:hex, :castore, "1.0.7", "b651241514e5f6956028147fe6637f7ac13802537e895a724f90bf3e36ddd1dd", [:mix], [], "hexpm", "da7785a4b0d2a021cd1292a60875a784b6caef71e76bf4917bdee1f390455cf5"},
"certifi": {:hex, :certifi, "2.9.0", "6f2a475689dd47f19fb74334859d460a2dc4e3252a3324bd2111b8f0429e7e21", [:rebar3], [], "hexpm", "266da46bdb06d6c6d35fde799bcb28d36d985d424ad7c08b5bb48f5b5cdd4641"},
"connection": {:hex, :connection, "1.1.0", "ff2a49c4b75b6fb3e674bfc5536451607270aac754ffd1bdfe175abe4a6d7a68", [:mix], [], "hexpm", "722c1eb0a418fbe91ba7bd59a47e28008a189d47e37e0e7bb85585a016b2869c"},
Expand Down
4 changes: 2 additions & 2 deletions apps/astarte_housekeeping_api/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule Astarte.Housekeeping.API.Mixfile do
def project do
[
app: :astarte_housekeeping_api,
version: "1.2.0-dev",
version: "1.2.0-rc.0",
elixir: "~> 1.15",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down Expand Up @@ -68,7 +68,7 @@ defmodule Astarte.Housekeeping.API.Mixfile do

defp astarte_required_modules(_) do
[
{:astarte_rpc, github: "astarte-platform/astarte_rpc"}
{:astarte_rpc, github: "astarte-platform/astarte_rpc", tag: "v1.2.0-rc.0"}
]
end

Expand Down
2 changes: 1 addition & 1 deletion apps/astarte_housekeeping_api/mix.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%{
"amqp": {:hex, :amqp, "3.3.0", "056d9f4bac96c3ab5a904b321e70e78b91ba594766a1fc2f32afd9c016d9f43b", [:mix], [{:amqp_client, "~> 3.9", [hex: :amqp_client, repo: "hexpm", optional: false]}], "hexpm", "8d3ae139d2646c630d674a1b8d68c7f85134f9e8b2a1c3dd5621616994b10a8b"},
"amqp_client": {:hex, :amqp_client, "3.12.10", "dcc0d5d0037fa2b486c6eb8b52695503765b96f919e38ca864a7b300b829742d", [:make, :rebar3], [{:credentials_obfuscation, "3.4.0", [hex: :credentials_obfuscation, repo: "hexpm", optional: false]}, {:rabbit_common, "3.12.10", [hex: :rabbit_common, repo: "hexpm", optional: false]}], "hexpm", "16a23959899a82d9c2534ed1dcf1fa281d3b660fb7f78426b880647f0a53731f"},
"astarte_rpc": {:git, "https://github.com/astarte-platform/astarte_rpc.git", "c0d77760fb12256a23a2d00e1a119496a089fa9d", []},
"astarte_rpc": {:git, "https://github.com/astarte-platform/astarte_rpc.git", "31b008707a03f59d3a26b5977299230ac407fc53", [tag: "v1.2.0-rc.0"]},
"castore": {:hex, :castore, "1.0.7", "b651241514e5f6956028147fe6637f7ac13802537e895a724f90bf3e36ddd1dd", [:mix], [], "hexpm", "da7785a4b0d2a021cd1292a60875a784b6caef71e76bf4917bdee1f390455cf5"},
"certifi": {:hex, :certifi, "2.9.0", "6f2a475689dd47f19fb74334859d460a2dc4e3252a3324bd2111b8f0429e7e21", [:rebar3], [], "hexpm", "266da46bdb06d6c6d35fde799bcb28d36d985d424ad7c08b5bb48f5b5cdd4641"},
"cors_plug": {:hex, :cors_plug, "2.0.3", "316f806d10316e6d10f09473f19052d20ba0a0ce2a1d910ddf57d663dac402ae", [:mix], [{:plug, "~> 1.8", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "ee4ae1418e6ce117fc42c2ba3e6cbdca4e95ecd2fe59a05ec6884ca16d469aea"},
Expand Down
8 changes: 4 additions & 4 deletions apps/astarte_pairing/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule Astarte.Pairing.Mixfile do
def project do
[
app: :astarte_pairing,
version: "1.2.0-dev",
version: "1.2.0-rc.0",
elixir: "~> 1.15",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down Expand Up @@ -67,9 +67,9 @@ defmodule Astarte.Pairing.Mixfile do

defp astarte_required_modules(_) do
[
{:astarte_core, github: "astarte-platform/astarte_core"},
{:astarte_data_access, github: "astarte-platform/astarte_data_access"},
{:astarte_rpc, github: "astarte-platform/astarte_rpc"}
{:astarte_core, github: "astarte-platform/astarte_core", tag: "v1.2.0-rc.0"},
{:astarte_data_access, github: "astarte-platform/astarte_data_access", tag: "v1.2.0-rc.0"},
{:astarte_rpc, github: "astarte-platform/astarte_rpc", tag: "v1.2.0-rc.0"}
]
end

Expand Down
Loading

0 comments on commit 35c877e

Please sign in to comment.