Skip to content

Commit

Permalink
Add new 'Unreleased' section to CHANGELOG.md. (#1121)
Browse files Browse the repository at this point in the history
* And update PR template.
  • Loading branch information
tburrows13 committed Apr 1, 2020
1 parent fc691e9 commit 7353216
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 10 deletions.
13 changes: 6 additions & 7 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -1,10 +1,9 @@
<!--
Please tick when you have done these. They don't need to all be completed before the PR is created.
Please tick when you have done these. They don't need to all be completed before the PR is submitted.
Delete them if they are not appropriate for this pull request.
-->
- [ ] <!--Only relevant if this is a bug fix-->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`
- [ ] 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`
30 changes: 28 additions & 2 deletions 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 <!-- for new features -->

### Changed <!-- for changes in existing functionality -->

### Deprecated <!-- for soon-to-be removed features -->

### Removed <!-- for now removed features -->
- Support removed for Python versions 2.7, 3.4 & 3.5

### Fixed <!-- for any bug fixes -->
- 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)
Expand All @@ -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:**
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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])"
)

Expand Down

0 comments on commit 7353216

Please sign in to comment.