Skip to content

Commit

Permalink
Ready for v0.0.11 (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
cw75 authored Aug 23, 2022
1 parent c3f0d18 commit 5f22133
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.0.11
Released on August 23, 2022.

### Important Note
* If you did a fresh installation of Aqueduct v0.0.10, you may have run into a bug that says our
schema migrator did not run successfully. To fix this, run `aqueduct clear` and `pip3 install --upgrade aqueduct-ml`.
You can then start the server via `aqueduct start` and everything should work again.

### Bugfixes
* Fixes a bug where a fresh installation of Aqueduct fails due to a bug in the schema migration process.

## 0.0.10
Released on August 22, 2022.

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.10",
version="0.0.11",
author="Aqueduct, Inc.",
author_email="hello@aqueducthq.com",
description="Python SDK for the Aqueduct prediction infrastructure",
Expand Down
6 changes: 3 additions & 3 deletions 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.10"
package_version = "0.0.11"
aws_credentials_path = os.path.join(os.environ["HOME"], ".aws", "credentials")

default_server_port = 8080
Expand Down Expand Up @@ -236,8 +236,6 @@ def update():
for directory in directories:
os.mkdir(directory)

update_server_version()

with open(os.path.join(server_directory, "config/config.yml"), "wb") as f:
f.write(requests.get(os.path.join(s3_server_prefix, "config/config.yml")).content)

Expand All @@ -246,6 +244,8 @@ def update():
with open(os.path.join(server_directory, "db/demo.db"), "wb") as f:
f.write(requests.get(os.path.join(s3_server_prefix, "db/demo.db")).content)

update_server_version()

print("Finished initializing Aqueduct base directory.")
except Exception as e:
print(e)
Expand Down
2 changes: 1 addition & 1 deletion src/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ pyyaml
typing_extensions
Pillow
packaging
aqueduct-sdk==0.0.10
aqueduct-sdk==0.0.11
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.10",
version="0.0.11",
install_requires=install_requires,
scripts=["bin/aqueduct"],
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion 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.10",
"version": "0.0.11",
"scripts": {
"start": "parcel --no-cache index.html",
"build": "parcel build --public-url /dist --dist-dir dist/default index.html",
Expand Down

0 comments on commit 5f22133

Please sign in to comment.