diff --git a/CHANGELOG.md b/CHANGELOG.md index de33c30..b38608c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- It is now possible to color code the graph by instance type (e.g. Mastodon, Pleroma, etc.) - ### Changed ### Deprecated @@ -21,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security +## [2.2.0 - 2019-07-24] + +### Added + +- It is now possible to color code the graph by instance type (e.g. Mastodon, Pleroma, etc.) + ## [2.1.0 - 2019-07-24] ### Added diff --git a/backend/mix.exs b/backend/mix.exs index 0d727f1..a53fb81 100644 --- a/backend/mix.exs +++ b/backend/mix.exs @@ -4,7 +4,7 @@ defmodule Backend.MixProject do def project do [ app: :backend, - version: "2.1.0", + version: "2.2.0", elixir: "~> 1.5", elixirc_paths: elixirc_paths(Mix.env()), compilers: [:phoenix, :gettext] ++ Mix.compilers(), diff --git a/frontend/package.json b/frontend/package.json index 458ae57..61cdc88 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "2.1.0", + "version": "2.2.0", "private": true, "scripts": { "start": "NODE_ENV=development react-scripts start",