Skip to content

Commit

Permalink
fixing bugs (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
wjcunningham7 authored Jan 26, 2022
1 parent a3dcd5d commit 7bed203
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
 

<div align="center">
<img src="https://github.com/AgnostiqHQ/covalent/blob/master/doc/source/_static/light.png#gh-light-mode-only?raw=true" width="70%">
<img src="https://github.com/AgnostiqHQ/covalent/blob/master/doc/source/_static/dark.png#gh-dark-mode-only?raw=true" width="70%">
<img src="https://raw.githubusercontent.com/AgnostiqHQ/covalent/blob/master/doc/source/_static/light.png#gh-light-mode-only" width="70%">
<img src="https://raw.githubusercontent.com/AgnostiqHQ/covalent/blob/master/doc/source/_static/dark.png#gh-dark-mode-only" width="70%">

&nbsp;

Expand All @@ -23,7 +23,7 @@ Covalent is a Pythonic workflow tool used to execute tasks on advanced computing
## ✨ Features

<div align="center">
<img src="https://github.com/AgnostiqHQ/covalent/blob/master/doc/source/_static/uibanner.png?raw=true" width="100%">
<img src="https://raw.githubusercontent.com/AgnostiqHQ/covalent/blob/master/doc/source/_static/uibanner.png" width="100%">

<em>With Covalent's UI, bring your workflows to life! </em>
</div>
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.22.3
0.22.4
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit 7bed203

Please sign in to comment.