release 2.6.0

This commit is contained in:
Tao Bror Bojlén 2019-08-10 14:56:46 +03:00
parent e8b951485e
commit 992ed6b9bb
No known key found for this signature in database
GPG Key ID: C6EC7AAB905F9E6F
4 changed files with 19 additions and 3 deletions

View File

@ -19,6 +19,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Security
## [2.6.0 - 2019-08-10]
### Added
- Add nodeinfo and GNU Social crawler.
- Thanks to nodeinfo, Peertube and Writefreely are now also displayed on the map.
- Note that the information about connections comes from other instances.
### Changed
- You can now zoom slightly further out on the map to see more of the fediverse at once.
### Fixed
- Database deletions are now properly handled with `ON DELETE CASCADE` where necessary.
## [2.5.0 - 2019-08-08]
### 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.5.0/priv/elasticsearch/instances.json",
do: "lib/backend-2.6.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.5.0",
version: "2.6.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.5.0",
"version": "2.6.0",
"private": true,
"scripts": {
"start": "NODE_ENV=development react-scripts start",