From 2de412bfbb009ca6a902019e9c5a751e46af7b43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tao=20Bror=20Bojl=C3=A9n?= Date: Wed, 24 Jul 2019 13:19:24 +0300 Subject: [PATCH] prepare for 2.1.0 release --- CHANGELOG.md | 24 ++++++++++++++++-------- backend/mix.exs | 2 +- frontend/package.json | 2 +- 3 files changed, 18 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dddc937..ed06886 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,10 +9,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [2.1.0 - 2019-07-24] + +### Added + - It's now shown in the front-end if an instance wasn't crawled because of its robots.txt. - You can now link directly to instances at e.g. /instance/mastodon.social. - Instance details now have a link to the corresponding fediverse.network page. -- The reset-graph-view button now explains what it's for when you hover over it. - The main graph is no longer displayed on mobile. Instead, a smaller neighborhood graph is shown. ### Changed @@ -21,16 +34,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Label size is now dependent on the instance size. - The instance lookup field is now front-and-center. Is also uses the backend for faster lookups. This is to improve performance, and it lays the groundwork for full-text search over instance names and descriptions. - -### Deprecated - -### Removed +- The reset-graph-view button now explains what it's for when you hover over it. ### Fixed -- Previously, direct links to /about would return a 404 on Netlify's infrastructure. Now it's fixed. - -### Security +- Previously, direct links to /about would return a 404 on Netlify's infrastructure. No longer. ## [2.0.0] - 2019-07-20 diff --git a/backend/mix.exs b/backend/mix.exs index 9f4b58a..0d727f1 100644 --- a/backend/mix.exs +++ b/backend/mix.exs @@ -4,7 +4,7 @@ defmodule Backend.MixProject do def project do [ app: :backend, - version: "2.0.0", + version: "2.1.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 40c2e94..458ae57 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "2.0.0", + "version": "2.1.0", "private": true, "scripts": { "start": "NODE_ENV=development react-scripts start",