release 2.4.0

This commit is contained in:
Tao Bror Bojlén 2019-08-04 15:46:38 +03:00
parent 2c036a9cf1
commit a4e02e6f76
No known key found for this signature in database
GPG Key ID: C6EC7AAB905F9E6F
4 changed files with 15 additions and 11 deletions

View File

@ -9,14 +9,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- You can now click a button in the search bar to search (you can also still just prss enter, of course).
- You can now filter searches by instance type.
- Full-text search across instance descriptions now supports the following languages: arabic, armenian, basque,
bengali, brazilian, bulgarian, catalan, cjk (i.e. chinese, japanese, korean), czech, danish, dutch, english, finnish,
french, galician, german, greek, hindi, hungarian, indonesian, irish, italian, latvian, lithuanian, norwegian,
persian, romanian, russian, sorani, spanish, swedish, turkish, thai.
- Added toggle to show/hide edges on graph.
### Changed
### Deprecated
@ -27,6 +19,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Security
## [2.4.0 - 2019-08-04]
### Added
- You can now click a button in the search bar to search (you can also still just press enter, of course).
- You can now filter searches by instance type.
- Added toggle to show/hide edges on graph.
- Full-text search across instance descriptions now supports the following languages: arabic, armenian, basque,
bengali, brazilian, bulgarian, catalan, cjk (i.e. chinese, japanese, korean), czech, danish, dutch, english, finnish,
french, galician, german, greek, hindi, hungarian, indonesian, irish, italian, latvian, lithuanian, norwegian,
persian, romanian, russian, sorani, spanish, swedish, turkish, thai.
## [2.3.1 - 2019-08-03]
### Added

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.1/priv/elasticsearch/instances.json",
do: "lib/backend-2.4.0/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.1",
version: "2.4.0",
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.1",
"version": "2.4.0",
"private": true,
"scripts": {
"start": "NODE_ENV=development react-scripts start",