diff --git a/CHANGELOG.md b/CHANGELOG.md index f7499c7..470c943 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [2.3.0 - 2019-08-02] + +### Added + - Instance administrators can now log in to opt in or out of crawling. - Added ElasticSearch full-text search over instance domains and descriptions. - Search results are now highlighted on the graph. @@ -22,10 +36,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - There are now 100 concurrent crawl workers by default (increased from 50). - The colors for color coding have been made brighter (more visible against the dark background). -### Deprecated - -### Removed - ### Fixed - Fixed a process leak that could cause the server to OOM. diff --git a/backend/config/config.exs b/backend/config/config.exs index 6b19f97..456386f 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.2.0/priv/elasticsearch/instances.json", + do: "lib/backend-2.3.0/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 10de50a..8c70804 100644 --- a/backend/mix.exs +++ b/backend/mix.exs @@ -4,7 +4,7 @@ defmodule Backend.MixProject do def project do [ app: :backend, - version: "2.2.0", + version: "2.3.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 61cdc88..fb44a4c 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "2.2.0", + "version": "2.3.0", "private": true, "scripts": { "start": "NODE_ENV=development react-scripts start",