Skip to content

Commit aa66c8d

Browse files
author
Vincent Petry
authored
Merge pull request #277 from owncloud/release-0.14.0-changelog
Set version to 0.14.0, update changelog
2 parents 0d5a0cd + c586bc6 commit aa66c8d

File tree

3 files changed

+22
-9
lines changed

3 files changed

+22
-9
lines changed

CHANGELOG.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,26 @@
33
All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
6+
7+
## [0.14.0]
8+
9+
### Added
10+
11+
- Support for PHP 7.2 - [#256](https://github.com/owncloud/files_antivirus/issues/256)
12+
13+
### Changed
14+
15+
- Set max version to 10 because core platform is switching to Semver
16+
617
## [0.13.0] - 2018-07-11
718
### Fixed
19+
820
- Obey file size limits when uploads are chunked [#226](https://github.com/owncloud/files_antivirus/pull/226)
921
- Don't log exceptions on virus detection [#219](https://github.com/owncloud/files_antivirus/pull/219)
1022

1123
### Changed
1224
- Return HTTP status code `403` on virus detection [#219](https://github.com/owncloud/files_antivirus/pull/219)
1325

14-
1526
## [0.12.0] - 2018-02-08
1627

1728
### Added
@@ -46,6 +57,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
4657
- App description and makefile updated for new marketplace [161](https://github.com/owncloud/files_antivirus/pull/161)
4758

4859
### Fixed
60+
4961
- Oracle: Error when saving a rule [167](https://github.com/owncloud/files_antivirus/pull/167)
5062

5163
## [0.10.1.0] - 2017-09-15
@@ -258,6 +270,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
258270

259271
- Initial implementation
260272

261-
[Unreleased]: https://github.com/owncloud/files_antivirus/compare/v0.13.0...HEAD
262-
[0.13.0]: https://github.com/owncloud/files_antivirus/compare/v0.12.0...release/0.13.0
263-
[0.12.0]: https://github.com/owncloud/files_antivirus/compare/v0.11.2...release/0.12.0
273+
[0.14.0]: https://github.com/owncloud/files_antivirus/compare/v0.13.0...v0.14.0
274+
[0.13.0]: https://github.com/owncloud/files_antivirus/compare/v0.12.0...v0.13.0
275+
[0.12.0]: https://github.com/owncloud/files_antivirus/compare/v0.11.2...v0.12.0

Makefile

+4-3
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,11 @@ dist: source appstore
6161
source:
6262
rm -rf $(source_build_directory)
6363
mkdir -p $(source_build_directory)
64-
tar cvzf $(source_package_name).tar.gz ../$(app_name) \
64+
tar cvzf $(source_package_name).tar.gz \
6565
--exclude-vcs \
6666
--exclude="../$(app_name)/build" \
67-
--exclude="../$(app_name)/*.log"
67+
--exclude="../$(app_name)/*.log" \
68+
../$(app_name)
6869

6970
# Builds the source package for the app store, ignores php and js tests
7071
.PHONY: appstore
@@ -101,4 +102,4 @@ test-php-lint:
101102

102103
.PHONY: test-php-style
103104
test-php-style: $(composer_dev_deps)
104-
$(composer_deps)/bin/php-cs-fixer fix -v --diff --diff-format udiff --dry-run --allow-risky yes
105+
$(composer_deps)/bin/php-cs-fixer fix -v --diff --diff-format udiff --dry-run --allow-risky yes

appinfo/info.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ More information is available in the Anti-Virus documentation.
2121
<category>security</category>
2222
<licence>AGPL</licence>
2323
<author>Manuel Delgado, Bart Visscher, thinksilicon.de, Viktar Dubiniuk</author>
24-
<version>0.13.0</version>
24+
<version>0.14.0</version>
2525
<documentation>
2626
<admin>https://doc.owncloud.com/server/latest/admin_manual/configuration/server/antivirus_configuration.html</admin>
2727
</documentation>
@@ -32,7 +32,7 @@ More information is available in the Anti-Virus documentation.
3232
<use-migrations>true</use-migrations>
3333
<namespace>Files_Antivirus</namespace>
3434
<dependencies>
35-
<owncloud min-version="10.0.9" max-version="11.0.0.0" />
35+
<owncloud min-version="10.0.9" max-version="10" />
3636
</dependencies>
3737
<settings>
3838
<admin>OCA\Files_Antivirus\AdminPanel</admin>

0 commit comments

Comments
 (0)