浏览代码

Merge pull request #1713 from pixelfed/staging

v0.10.5
daniel 5 年之前
父节点
当前提交
f8441580e3
共有 3 个文件被更改,包括 14 次插入2 次删除
  1. 12 1
      CHANGELOG.md
  2. 1 0
      app/Transformer/Api/AccountTransformer.php
  3. 1 1
      config/pixelfed.php

+ 12 - 1
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)

+ 1 - 0
app/Transformer/Api/AccountTransformer.php

@@ -40,6 +40,7 @@ class AccountTransformer extends Fractal\TransformerAbstract
 			'fields' => [],
 			'bot' => false,
 			'website' => $profile->website,
+			'software' => 'pixelfed',
 			'is_admin' => (bool) $is_admin,
 		];
 	}

+ 1 - 1
config/pixelfed.php

@@ -23,7 +23,7 @@ return [
     | This value is the version of your Pixelfed instance.
     |
     */
-    'version' => '0.10.3',
+    'version' => '0.10.5',
 
     /*
     |--------------------------------------------------------------------------