diff --git a/CHANGELOG.md b/CHANGELOG.md index a3c06e3cb..2fe1f7014 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format 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). +## [0.22.6] - 2022-01-26 + +### Fixed + +- Added service folder in covalent dispatcher to package. + ## [0.22.5] - 2022-01-25 ### Fixed diff --git a/VERSION b/VERSION index 03035cdde..18fb7fece 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.22.5 +0.22.6 diff --git a/setup.py b/setup.py index a2ccc4deb..de5d33d66 100644 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ def package_files(directory): return paths -package_data_dirs = package_files("covalent_dispatcher/_static") +package_data_dirs = package_files("covalent_dispatcher/_service") package_data_dirs += package_files("doc") package_data_dirs += package_files("tests")