release 2.3.1

This commit is contained in:
Tao Bror Bojlén 2019-08-03 00:33:55 +03:00
parent 80c1462866
commit 3a50e5cb4d
No known key found for this signature in database
GPG Key ID: C6EC7AAB905F9E6F
4 changed files with 18 additions and 8 deletions

View File

@ -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

View File

@ -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,

View File

@ -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(),

View File

@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "2.3.0",
"version": "2.3.1",
"private": true,
"scripts": {
"start": "NODE_ENV=development react-scripts start",