Skip to content

Commit

Permalink
Add changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
tburrows13 committed Apr 6, 2020
1 parent 7ef685f commit 6b5f56c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Deprecated <!-- for soon-to-be removed features -->

### Removed <!-- for now removed features -->
- Support removed for Python versions 2.7, 3.4 & 3.5
- Support for Python versions 2.7, 3.4 & 3.5
- All previously deprecated methods and parameters:
- `AudioClip.to_audiofile()` -> use `AudioClip.write_audiofile()`
- `VideoClip.to_videofile()` -> use `VideoClip.write_videofile()`
- `VideoClip.to_images_sequence()` -> use `VideoClip.write_images_sequence()`
- `concatenate()` -> use `concatenate_videoclips()`
- `verbose` parameter in `AudioClip.write_audiofile()`, `ffmpeg_audiowriter()`, `VideoFileClip()`, `VideoClip.write_videofile()`, `VideoClip.write_images_sequence()`, `ffmpeg_write_video()`, `write_gif()`, `write_gif_with_tempfiles()`, `write_gif_with_image_io()` -> Instead of `verbose=False`, use `logger=None`
- `verbose_print()` -> no replacement
- `col` parameter in `ColorClip()` -> use `color`

### Fixed <!-- for any bug fixes -->
- When using `VideoClip.write_videofile()` with `write_logfile=True`, errors would not be properly reported [#890]
Expand Down

0 comments on commit 6b5f56c

Please sign in to comment.