Skip to content

Commit

Permalink
Bump version number and changelog for release 0.0.7 (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
cw75 authored Aug 1, 2022
1 parent 7439425 commit a4b42dd
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 12 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.0.7
Released on 8/1/2022

### Enhancements
* Upgrades to go-chi v5.
* Removes need to provide API key and server address when running client and server on same machine.
* Adds support for operators with no input data.

### Bugfixes
* Fixes bug where imported functions were not executed correctly.
* Improves CSV upload UI to make data preview accurate and more legible.
* Fixes bug where requirements.txt was not consistently used.
* Fixes bug where bottom sidesheet and DAG viewer were misaligned and improperly sized.

## 0.0.6
Released on 7/25/2022

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ client.publish_flow(name="review_strlen", artifacts=[strlen_table])

You can run the full Aqueduct server in a Google Colab notebook [here](https://colab.research.google.com/drive/1EyKTF9tXjgnlBHVQzgt5Yr79e_8ef27M). Our [`examples`](examples/) directory has a few, more detailed prediction pipelines:

* [Churn Ensemble](examples/churn_prediction/Build%20and%20Deploy%20Churn%20Ensemble.ipynb)
* [Sentiment Analysis](examples/sentiment_analysis/Sentiment%20Model.ipynb)
* [Impute Missing Wine Data](examples/training_and_inference/Training%20and%20Inference%20in%20a%20Single%20Workflow.ipynb)
* [Churn Ensemble](https://github.com/aqueducthq/aqueduct/blob/main/examples/churn_prediction/Build%20and%20Deploy%20Churn%20Ensemble.ipynb)
* [Sentiment Analysis](https://github.com/aqueducthq/aqueduct/blob/main/examples/sentiment_analysis/Sentiment%20Model.ipynb)
* [Impute Missing Wine Data](https://github.com/aqueducthq/aqueduct/blob/main/examples/training_and_inference/Training%20and%20Inference%20in%20a%20Single%20Workflow.ipynb)
* more coming soon!


Expand Down
2 changes: 1 addition & 1 deletion sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setuptools.setup(
name="aqueduct-sdk",
version="0.0.6",
version="0.0.7",
author="Aqueduct, Inc.",
author_email="[email protected]",
description="Python SDK for the Aqueduct prediction infrastructure",
Expand Down
2 changes: 1 addition & 1 deletion src/python/bin/aqueduct
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ base_directory = os.path.join(os.environ["HOME"], ".aqueduct")
server_directory = os.path.join(os.environ["HOME"], ".aqueduct", "server")
ui_directory = os.path.join(os.environ["HOME"], ".aqueduct", "ui")

package_version = "0.0.6"
package_version = "0.0.7"
aws_credentials_path = os.path.join(os.environ["HOME"], ".aws", "credentials")

default_server_port = 8080
Expand Down
2 changes: 1 addition & 1 deletion src/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ SQLAlchemy
distro
pyyaml
typing_extensions
aqueduct-sdk==0.0.6
aqueduct-sdk==0.0.7
2 changes: 1 addition & 1 deletion src/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="aqueduct-ml",
version="0.0.6",
version="0.0.7",
install_requires=install_requires,
scripts=["bin/aqueduct"],
packages=find_packages(),
Expand Down
6 changes: 3 additions & 3 deletions src/ui/app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aqueducthq/ui",
"author": "Aqueduct, Inc. <[email protected]",
"version": "0.0.6",
"author": "Aqueduct, Inc. <[email protected]>",
"version": "0.0.7",
"scripts": {
"start": "parcel --no-cache --no-hmr index.html",
"build": "parcel build --public-url /dist --dist-dir dist/default index.html",
Expand All @@ -10,7 +10,7 @@
"lint:fix": "eslint '*/**/*.{js,ts,tsx}' --format table --fix"
},
"dependencies": {
"@aqueducthq/common": "^0.0.11-rc10",
"@aqueducthq/common": "^0.0.12",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
Expand Down
4 changes: 2 additions & 2 deletions src/ui/common/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aqueducthq/common",
"author": "Aqueduct <[email protected]",
"version": "0.0.11-rc0",
"author": "Aqueduct <[email protected]>",
"version": "0.0.12",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"alias": {
Expand Down

0 comments on commit a4b42dd

Please sign in to comment.