diff --git a/CHANGELOG.md b/CHANGELOG.md index 08b3bfe2f8..ec0abf9d05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Release Notes -## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.10.3...dev) +## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.10.4...dev) + +### Added +- Added ```software``` back to AccountTransformer [93c687c7](https://github.com/pixelfed/pixelfed/commit/93c687c7) + +### Fixed +- Fixed cache bug in privacy and terms pages [#1712](https://github.com/pixelfed/pixelfed/commit/fe522da8db7a8b0d7c18d405abcb885f8678f35c) + +### Changed + + +## [v0.10.4 (2019-09-24)](https://github.com/pixelfed/pixelfed/compare/v0.10.3...v0.10.4) ### Added - Added Welsh translations [#1706](https://github.com/pixelfed/pixelfed/pull/1706) diff --git a/app/Transformer/Api/AccountTransformer.php b/app/Transformer/Api/AccountTransformer.php index 53b49c38aa..47506410ef 100644 --- a/app/Transformer/Api/AccountTransformer.php +++ b/app/Transformer/Api/AccountTransformer.php @@ -40,6 +40,7 @@ public function transform(Profile $profile) 'fields' => [], 'bot' => false, 'website' => $profile->website, + 'software' => 'pixelfed', 'is_admin' => (bool) $is_admin, ]; } diff --git a/config/pixelfed.php b/config/pixelfed.php index bca9fcb958..ed10f11fcc 100644 --- a/config/pixelfed.php +++ b/config/pixelfed.php @@ -23,7 +23,7 @@ | This value is the version of your Pixelfed instance. | */ - 'version' => '0.10.3', + 'version' => '0.10.5', /* |--------------------------------------------------------------------------