diff --git a/.github/workflows/mplfinance_checks.yml b/.github/workflows/mplfinance_checks.yml
index 04a25ce1..d4661e44 100644
--- a/.github/workflows/mplfinance_checks.yml
+++ b/.github/workflows/mplfinance_checks.yml
@@ -1,5 +1,5 @@
name: mplfinance Checks
-on: [ push, pull_request ]
+on: [ workflow_dispatch, pull_request ]
jobs:
Regression_Tests:
runs-on: ubuntu-latest
diff --git a/README.md b/README.md
index 7ef8cc38..6ad4510f 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,8 @@ pip install --upgrade mplfinance
---
-## **⇾ [Latest Release Information](https://github.com/matplotlib/mplfinance/blob/master/RELEASE_NOTES.md) ⇽**
+## **⇾ [Latest Release Information](https://github.com/matplotlib/mplfinance/releases) ⇽**
+#### ⇾ **[Older Release Information](https://github.com/matplotlib/mplfinance/blob/master/RELEASE_NOTES.md)**
---
## Contents and Tutorials
@@ -19,14 +20,16 @@ pip install --upgrade mplfinance
- **[The New API](https://github.com/matplotlib/mplfinance#newapi)**
- **[Tutorials](https://github.com/matplotlib/mplfinance#tutorials)**
- **[Basic Usage](https://github.com/matplotlib/mplfinance#usage)**
- - **[Customizing the Appearance of Plots](https://github.com/matplotlib/mplfinance/blob/master/markdown/customization_and_styles.md)** (New features: June 2020)
+ - **[Customizing the Appearance of Plots](https://github.com/matplotlib/mplfinance/blob/master/markdown/customization_and_styles.md)**
- **[Adding Your Own Technical Studies to Plots](https://github.com/matplotlib/mplfinance/blob/master/examples/addplot.ipynb)**
- - **[Subplots: Multiple Plots on a Single Figure](https://github.com/matplotlib/mplfinance/blob/master/markdown/subplots.md)** (**New features: August 2020**)
+ - **[Subplots: Multiple Plots on a Single Figure](https://github.com/matplotlib/mplfinance/blob/master/markdown/subplots.md)**
- **[Price-Movement Plots (Renko, P&F, etc)](https://github.com/matplotlib/mplfinance/blob/master/examples/price-movement_plots.ipynb)**
- **[Trends, Support, Resistance, and Trading Lines](https://github.com/matplotlib/mplfinance/blob/master/examples/using_lines.ipynb)**
+ - **[Coloring Individual Candlesticks](https://github.com/matplotlib/mplfinance/blob/master/examples/marketcolor_overrides.ipynb)** (New: December 2021)
- **[Saving the Plot to a File](https://github.com/matplotlib/mplfinance/blob/master/examples/savefig.ipynb)**
- - **[Animation/Updating your plots in realtime](https://github.com/matplotlib/mplfinance/blob/master/markdown/animation.md)** (**New: August 2020**)
- - **⇾ [Latest Release Info](https://github.com/matplotlib/mplfinance/blob/master/RELEASE_NOTES.md) ⇽**
+ - **[Animation/Updating your plots in realtime](https://github.com/matplotlib/mplfinance/blob/master/markdown/animation.md)**
+ - **⇾ [Latest Release Info](https://github.com/matplotlib/mplfinance/releases) ⇽**
+ - **[Older Release Info](https://github.com/matplotlib/mplfinance/blob/master/RELEASE_NOTES.md)**
- **[Some Background History About This Package](https://github.com/matplotlib/mplfinance#history)**
- **[Old API Availability](https://github.com/matplotlib/mplfinance#oldapi)**
diff --git a/setup.py b/setup.py
index 73d3275e..23cde3b6 100644
--- a/setup.py
+++ b/setup.py
@@ -27,11 +27,12 @@
license="BSD-style",
package_dir={'': pkg_location},
packages=find_packages(where=pkg_location),
- classifiers=['Development Status :: 3 - Alpha',
+ classifiers=['Development Status :: 2 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: 3.9',
'Framework :: Matplotlib',
'Intended Audience :: Developers',
'Intended Audience :: Education',