diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 9dca452bd..1784a1dc2 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,10 +1,9 @@ -- [ ] I have provided code that clearly demonstrates the bug and only works correctly when used with this PR -- [ ] I have added suitable tests to the test suite in `tests/` -- [ ] I have properly documented new or changed features in the documention or in the docstrings -- [ ] I have properly documented unusual changes to the code in the comments around it -- [ ] I have made note of any breaking/backwards incompatible changes -- [ ] I formatted my code using `black -t py36` \ No newline at end of file +- [ ] I have provided code that clearly demonstrates the bug and that only works correctly when applying this fix +- [ ] I have added suitable tests demonstrating a fixed bug or new/changed feature to the test suite in `tests/` +- [ ] I have properly documented new or changed features in the documentation or in the docstrings +- [ ] I have properly explained unusual or unexpected code in the comments around it +- [ ] I have formatted my code using `black -t py36` \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 60e70db2c..96b7502ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +All notable changes to this project will be documented in this file. + +The format from v2.0.0 onwards is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased](https://github.com/zulko/moviepy/tree/master) + +[Full Changelog](https://github.com/zulko/moviepy/compare/v1.0.2...HEAD) + + +### Important Announcements +- Support removed for Python versions 2.7, 3.4 & 3.5 [#1103, #1106] + +### Added + +### Changed + +### Deprecated + +### Removed +- Support removed for Python versions 2.7, 3.4 & 3.5 + +### Fixed +- When using `VideoClip.write_videofile()` with `write_logfile=True`, errors would not be properly reported [#890] + + ## [v1.0.2](https://github.com/zulko/moviepy/tree/v1.0.2) (2020-03-26) [Full Changelog](https://github.com/zulko/moviepy/compare/v1.0.1...v1.0.2) @@ -8,8 +34,8 @@ Note that this is likely to be the last release before v2.0, which will drop sup **Notable bug fixes:** -- Fixed bug that meant that some VideoFileClips were created without audio [\#968] -- Fixed bug so now the `slide_out` effect works [\#795] +- Fixed bug that meant that some VideoFileClips were created without audio [\#968](https://github.com/Zulko/moviepy/pull/968) +- Fixed bug so now the `slide_out` effect works [\#795](https://github.com/Zulko/moviepy/pull/795) **Fixed bugs:** diff --git a/setup.py b/setup.py index 2877a6500..2dd347d17 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ def run_tests(self): from sphinx.setup_command import BuildDoc except ImportError: raise ImportError( - "Running the documenation builds has additional" + "Running the documentation builds has additional" " dependencies. Please run (pip install moviepy[doc])" )