From 9fd6443487359c6a5759ac15417a19f7fcffaeaf Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 19 Jan 2019 22:01:12 +0100 Subject: Add translators to AUTHORS.md (#9865) --- lib/tasks/repo.rake | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib') diff --git a/lib/tasks/repo.rake b/lib/tasks/repo.rake index 263cca84c..8ceec3085 100644 --- a/lib/tasks/repo.rake +++ b/lib/tasks/repo.rake @@ -5,6 +5,9 @@ namespace :repo do task :authors do file = File.open(Rails.root.join('AUTHORS.md'), 'w') file << <<~HEADER + Authors + ======= + Mastodon is available on [GitHub](https://github.com/tootsuite/mastodon) and provided thanks to the work of the following contributors: -- cgit From 7cf85c01336a24b3ed4cbefd42fbf518dc772f99 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 20 Jan 2019 00:30:53 +0100 Subject: Bump version to 2.7.0 --- lib/mastodon/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb index 93f501bb7..abbc31178 100644 --- a/lib/mastodon/version.rb +++ b/lib/mastodon/version.rb @@ -21,7 +21,7 @@ module Mastodon end def flags - 'rc3' + '' end def to_a -- cgit From e9cd3636c67ec033aa3dc23f46793d79e9dd03d5 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 20 Jan 2019 12:30:25 +0100 Subject: Fix `tootctl accounts delete` not deleting user record as well (#9874) --- lib/mastodon/accounts_cli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/mastodon/accounts_cli.rb b/lib/mastodon/accounts_cli.rb index 24fb67991..dca31cdca 100644 --- a/lib/mastodon/accounts_cli.rb +++ b/lib/mastodon/accounts_cli.rb @@ -176,7 +176,7 @@ module Mastodon end say("Deleting user with #{account.statuses_count} statuses, this might take a while...") - SuspendAccountService.new.call(account, remove_user: true) + SuspendAccountService.new.call(account, including_user: true) say('OK', :green) end -- cgit