diff --git a/docs/change_log.rst b/docs/change_log.rst index 1b2955a..bdc1677 100644 --- a/docs/change_log.rst +++ b/docs/change_log.rst @@ -3,6 +3,10 @@ Updates ------- +4.1.0 (10/08/2022) +~~~~~~~~~~~~~~ +- Added UK and Australia holidays for Queen Elizabeth II's State Funeral + 4.0.3 (10/08/2022) ~~~~~~~~~~~~~~ - Enabled tests that failed before PR #215 diff --git a/pyproject.toml b/pyproject.toml index 090eacf..f33923b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pandas_market_calendars" -version = "4.0.3" +version = "4.1.0" authors = [ { name="Ryan Sheftel", email="rsheftel@alumni.upenn.edu" }, ] diff --git a/setup.py b/setup.py index 11a2dbc..2c54e18 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import find_packages, setup # version -VERSION = '4.0.3' +VERSION = '4.1.0' # requirements REQUIRED_PYTHON = '>=3.8.0'