From 7bed203b579aaff5976fe70d1bdabdbfcddd447f Mon Sep 17 00:00:00 2001 From: Will Cunningham Date: Tue, 25 Jan 2022 19:10:59 -0500 Subject: [PATCH] fixing bugs (#9) --- CHANGELOG.md | 7 +++++++ README.md | 6 +++--- VERSION | 2 +- setup.py | 4 +--- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce519aba3..1043c395c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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.4] - 2022-01-25 + +### Fixed + +- dispatcher server app included in sdist +- raw image urls properly used + ## [0.22.3] - 2022-01-25 ### Fixed diff --git a/README.md b/README.md index 07d6fdac5..073069bb1 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@  
- - + +   @@ -23,7 +23,7 @@ Covalent is a Pythonic workflow tool used to execute tasks on advanced computing ## ✨ Features
- + With Covalent's UI, bring your workflows to life!
diff --git a/VERSION b/VERSION index d90746a79..4240544f3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.22.3 +0.22.4 diff --git a/setup.py b/setup.py index b2ee13a37..a2ccc4deb 100644 --- a/setup.py +++ b/setup.py @@ -62,9 +62,7 @@ def package_files(directory): return paths -package_data_dirs = package_files("covalent") -package_data_dirs += package_files("covalent_dispatcher") -package_data_dirs += package_files("covalent_ui") +package_data_dirs = package_files("covalent_dispatcher/_static") package_data_dirs += package_files("doc") package_data_dirs += package_files("tests")