Skip to content

Commit

Permalink
Ready for release 0.0.12 (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
cw75 authored Aug 25, 2022
1 parent aa7e2ca commit 1a69ce7
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 9 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 0.0.12
Released on August 25, 2022.

### Key Features
* Adds support for running workflows on Kubernetes. You can now register a Kubernetes integration
from the UI by providing the cluster's kubeconfig file and publish workflows
to run on Kubernetes by modifying the `config` argument in the SDK's `publish_flow` API.
* Enables using Google Cloud Storage (GCS) as Aqueduct's metadata store. You can register GCS as a storage
integration from the UI and store Aqueduct metadata in GCS.

### Enhancements
* Adds support for editing the authentication credentials of existing integrations from the UI.
* Adds support for deleting integrations from the UI.
* Adds support for deleting data created by Aqueduct when deleting a workflow; when deleting a workflow,
you will now see an option to select the objects created by this workflow.

### Bugfixes

None! :tada:

## 0.0.11
Released on August 23, 2022.

Expand Down
4 changes: 2 additions & 2 deletions sdk/aqueduct/integrations/k8s_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ def __init__(self, metadata: IntegrationInfo):
self._metadata = metadata

def describe(self) -> None:
"""Prints out a human-readable description of the Airflow integration."""
print("==================== Airflow Integration =============================")
"""Prints out a human-readable description of the K8s integration."""
print("==================== K8s Integration =============================")
self._metadata.describe()
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.11",
version="0.0.12",
author="Aqueduct, Inc.",
author_email="hello@aqueducthq.com",
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 @@ -27,7 +27,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.11"
package_version = "0.0.12"
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 @@ -10,4 +10,4 @@ pyyaml
typing_extensions
Pillow
packaging
aqueduct-sdk==0.0.11
aqueduct-sdk==0.0.12
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.11",
version="0.0.12",
install_requires=install_requires,
scripts=["bin/aqueduct"],
packages=find_packages(),
Expand Down
4 changes: 2 additions & 2 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. <hello@aqueducthq.com>",
"version": "0.0.11",
"version": "0.0.12",
"scripts": {
"start": "parcel --no-cache 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.14",
"@aqueducthq/common": "0.0.15",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/ui/common/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aqueducthq/common",
"author": "Aqueduct <hello@aqueducthq.com>",
"version": "0.0.14",
"version": "0.0.15",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"alias": {
Expand Down

0 comments on commit 1a69ce7

Please sign in to comment.