diff --git a/CHANGELOG.md b/CHANGELOG.md index d2e8c0b..1229543 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,17 +9,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Clarify that the admin page only works for Mastodon and Pleroma instances. +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [2.3.1 - 2019-08-03] + +### Added + - Added a warning on mobile devices suggesting to view the site on a larger computer. ### Changed - Performance improvements when opening the app on something that isn't the graph. - There are now fewer irrelevant search results. - -### Deprecated - -### Removed +- Clarify that the admin page only works for Mastodon and Pleroma instances. ### Fixed diff --git a/backend/config/config.exs b/backend/config/config.exs index 4005835..64912af 100644 --- a/backend/config/config.exs +++ b/backend/config/config.exs @@ -22,7 +22,7 @@ config :backend, Backend.Repo, queue_target: 5000 instances_config_path = if System.get_env("MIX_ENV") == "prod", - do: "lib/backend-2.3.0/priv/elasticsearch/instances.json", + do: "lib/backend-2.3.1/priv/elasticsearch/instances.json", else: "priv/elasticsearch/instances.json" config :backend, Backend.Elasticsearch.Cluster, diff --git a/backend/mix.exs b/backend/mix.exs index 8c70804..151f920 100644 --- a/backend/mix.exs +++ b/backend/mix.exs @@ -4,7 +4,7 @@ defmodule Backend.MixProject do def project do [ app: :backend, - version: "2.3.0", + version: "2.3.1", 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 fb44a4c..4ae0b50 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "2.3.0", + "version": "2.3.1", "private": true, "scripts": { "start": "NODE_ENV=development react-scripts start",