Skip to content

Commit 90dc548

Browse files
committed
Prepare v0.6 release candidate.
1 parent 2f0179c commit 90dc548

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

docs/changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PySceneDetect Releases
44

55
## PySceneDetect 0.6
66

7-
### 0.6-dev3 (March 11, 2022)
7+
### 0.6-rc0 (April 24, 2022)
88

99
#### Release Notes
1010

@@ -29,7 +29,7 @@ The main goals of v0.6 are reliability and performance. To achieve this required
2929

3030
**Command-Line Changes:**
3131

32-
*v0.6-dev4*:
32+
*v0.6-rc0*:
3333
* Using `--backend pyav` no longer causes the application to occasionally hang once processing is complete
3434
* `save-images` now supports image sequences
3535
* `-s`/`--stats` is now only used to write stats files, previously would load existing contents if any
@@ -73,7 +73,7 @@ The main goals of v0.6 are reliability and performance. To achieve this required
7373

7474
**API Changes:**
7575

76-
*v0.6-dev4*:
76+
*v0.6-rc0*:
7777

7878
* Add some backwards compatibility with v0.5 to avoid breaking most applications on release while still allowing performance improvements
7979
* Changes to `StatsManager`:

docs/download.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ PySceneDetect is available via `pip` as [the `scenedetect` package](https://pypi
2121
### Windows Build (64-bit Only) &nbsp; <span class="wy-text-neutral"><span class="fa fa-windows"></span></span>
2222

2323
<div class="important">
24-
<h3 class="wy-text-neutral"><span class="fa fa-forward wy-text-info"></span> Latest Release: <b class="wy-text-neutral">v0.6-dev2</b></h3>
25-
<h4 class="wy-text-neutral"><span class="fa fa-calendar wy-text-info"></span>&nbsp; Release Date:&nbsp; <b>March 6, 2022</b></h4>
24+
<h3 class="wy-text-neutral"><span class="fa fa-forward wy-text-info"></span> Latest Release: <b class="wy-text-neutral">v0.6-rc0</b></h3>
25+
<h4 class="wy-text-neutral"><span class="fa fa-calendar wy-text-info"></span>&nbsp; Release Date:&nbsp; <b>April 24, 2022</b></h4>
2626
<a href="https://github.com/Breakthrough/PySceneDetect/releases/download/v0.6-dev2/PySceneDetect-0.6-dev2-win64-portable.zip" class="btn btn-info" style="margin-bottom:8px;" role="button"><span class="fa fa-download"></span>&nbsp; <b>Portable .zip</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="../examples/usage/" class="btn btn-success" style="margin-bottom:8px;" role="button"><span class="fa fa-book"></span>&nbsp; <b>Getting Started</b></a>
2727
</div>
2828

2929
### Python Installer (All Platforms) &nbsp; <span class="wy-text-neutral"><span class="fa fa-windows"></span> &nbsp; <span class="fa fa-linux"></span> &nbsp; <span class="fa fa-apple"></span></span></h3>
3030

3131
<div class="important">
32-
<h4 class="wy-text-neutral"><span class="fa fa-forward wy-text-info"></span> Latest Release: <b class="wy-text-neutral">v0.6-dev2</b></h4>
33-
<h4 class="wy-text-neutral"><span class="fa fa-calendar wy-text-info"></span>&nbsp; Release Date:&nbsp; <b>March 6, 2022</b></h4>
34-
<a href="https://github.com/Breakthrough/PySceneDetect/archive/v0.6-dev2.zip" class="btn btn-info" style="margin-bottom:8px;" role="button"><span class="fa fa-download"></span>&nbsp; <b>Source</b>&nbsp;&nbsp;.zip</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="https://github.com/Breakthrough/PySceneDetect/archive/v0.6-dev2.tar.gz" class="btn btn-info" style="margin-bottom:8px;" role="button"><span class="fa fa-download"></span>&nbsp; <b>Source</b>&nbsp;&nbsp;.tar.gz</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="../examples/usage/" class="btn btn-success" style="margin-bottom:8px;" role="button"><span class="fa fa-book"></span>&nbsp; <b>Getting Started</b></a>
32+
<h4 class="wy-text-neutral"><span class="fa fa-forward wy-text-info"></span> Latest Release: <b class="wy-text-neutral">v0.6-rc0</b></h4>
33+
<h4 class="wy-text-neutral"><span class="fa fa-calendar wy-text-info"></span>&nbsp; Release Date:&nbsp; <b>April 24, 2022</b></h4>
34+
<a href="https://github.com/Breakthrough/PySceneDetect/archive/v0.6-rc0.zip" class="btn btn-info" style="margin-bottom:8px;" role="button"><span class="fa fa-download"></span>&nbsp; <b>Source</b>&nbsp;&nbsp;.zip</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="https://github.com/Breakthrough/PySceneDetect/archive/v0.6-rc0.tar.gz" class="btn btn-info" style="margin-bottom:8px;" role="button"><span class="fa fa-download"></span>&nbsp; <b>Source</b>&nbsp;&nbsp;.tar.gz</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="../examples/usage/" class="btn btn-success" style="margin-bottom:8px;" role="button"><span class="fa fa-book"></span>&nbsp; <b>Getting Started</b></a>
3535
</div>
3636

3737
To install from source, download and extract the latest release to a location of your choice, and make sure you have the appropriate [system requirements](#dependencies) installed before continuing. PySceneDetect can be installed by running the following command in the location of the extracted files (don't forget `sudo` if you're installing system-wide):
@@ -53,7 +53,7 @@ To get familiar with PySceneDetect, try running `scenedetect help`, or continue
5353

5454
PySceneDetect requires [Python 3](https://www.python.org/) and the following packages:
5555

56-
- [OpenCV](http://opencv.org/) (compatible with 2/3), can install via `pip install opencv-python`. Used for video I/O.
56+
- [OpenCV](http://opencv.org/) (compatible with 3/4), can install via `pip install opencv-python`. Used for video I/O.
5757
- [Numpy](https://numpy.org/), can install via `pip install numpy`. Used for frame processing.
5858
- [Click](https://click.palletsprojects.com), can install via `pip install Click`. Used for command line interface.
5959
- [tqdm](https://github.com/tqdm/tqdm), can install via `pip install tqdm`. Used to show progress bar and estimated time remaining.

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<h4 class="wy-text-info">Intelligent scene cut detection and video splitting tool.</h4>
44

55
<div class="important">
6-
<h3 class="wy-text-neutral"><span class="fa fa-info-circle wy-text-info"></span>&nbsp; Latest Release: <b>v0.6-dev2</b> (March 6, 2022)</h3>
6+
<h3 class="wy-text-neutral"><span class="fa fa-info-circle wy-text-info"></span>&nbsp; Latest Release: <b>v0.6-rc0</b> (April 24, 2022)</h3>
77
<a href="download/" class="btn btn-success" style="margin-bottom:8px;" role="button"><span class="fa fa-download"></span>&nbsp; <b>Download</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="changelog/" class="btn btn-info" style="margin-bottom:8px;" role="button"><span class="fa fa-reorder"></span>&nbsp; <b>Changelog</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="http://pyscenedetect-manual.readthedocs.io/en/v0.6/" class="btn btn-warning" style="margin-bottom:8px;" role="button"><span class="fa fa-gear"></span>&nbsp; <b>Manual</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="examples/usage-example/" class="btn btn-danger" style="margin-bottom:8px;" role="button"><span class="fa fa-book"></span>&nbsp; <b>Getting Started</b></a>
88
<br/>
99
See the changelog for the latest release notes and known issues.

manual/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# The short X.Y version
2929
version = '0.6'
3030
# The full version, including alpha/beta/rc tags
31-
release = 'v0.6-dev3'
31+
release = 'v0.6-rc0'
3232

3333

3434
# -- General configuration ---------------------------------------------------

scenedetect/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
# Used for module identification and when printing version & about info
4343
# (e.g. calling `scenedetect version` or `scenedetect about`).
44-
__version__ = 'v0.6-dev3'
44+
__version__ = 'v0.6-rc0'
4545
# About & copyright message string shown for the 'about' CLI command (scenedetect about).
4646

4747
ABOUT_STRING = """

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def get_extra_requires() -> Dict[str, List[str]]:
5252

5353
setup(
5454
name='scenedetect',
55-
version='0.6-dev3',
55+
version='0.6-rc0',
5656
description='Video scene cut/shot detection program and Python library.',
5757
long_description=open('dist/package-info.rst').read(),
5858
author='Brandon Castellano',

0 commit comments

Comments
 (0)