From 364a6268552460e72f121b0154f1d0748687263b Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 17 Sep 2016 21:29:32 +0100 Subject: [PATCH 1/2] Fix syntax issue --- app/Jobs/DownloadWebMention.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Jobs/DownloadWebMention.php b/app/Jobs/DownloadWebMention.php index 3ff505bc..592b41d3 100644 --- a/app/Jobs/DownloadWebMention.php +++ b/app/Jobs/DownloadWebMention.php @@ -43,8 +43,8 @@ class DownloadWebMention implements ShouldQueue $filesystem = \Illuminate\FileSystem\FileSystem(); $filesystem->put( $this->createFilenameFromURL($source), - (string) $response->getBody()) - } + (string) $response->getBody() + ); } } From 2a3f248bb11b923d4862805ec30b17f544b42e6e Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 17 Sep 2016 21:30:54 +0100 Subject: [PATCH 2/2] Bump version --- changelog.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog.md b/changelog.md index 1be00e63..4e49ae9d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # Changelog +## Version 0.0.11.1 (2016-09-17) + - Fix a syntax issue in the download webmention job + ## Version 0.0.11 (2016-09-17) - update linked GPG key (issue#7) - Added `integrity` values to external assets (issue#10)