Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lslunis committed Oct 4, 2022
1 parent 65025b4 commit e7099a7
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion docker-compose.build-streamlit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ services:
- linux/amd64
- linux/arm64
tags:
- registry-1.docker.io/oughtinc/ice:0.1.0-streamlit
- registry-1.docker.io/oughtinc/ice:0.1.1-streamlit
image: ${COMPOSE_IMAGE:-ice-streamlit}
2 changes: 1 addition & 1 deletion docker-compose.build-torch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ services:
platforms:
- linux/amd64
tags:
- docker.io/oughtinc/ice:0.1.0-torch
- docker.io/oughtinc/ice:0.1.1-torch
image: ${COMPOSE_IMAGE:-ice-torch}
2 changes: 1 addition & 1 deletion docker-compose.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ services:
- linux/amd64
- linux/arm64
tags:
- registry-1.docker.io/oughtinc/ice:0.1.0
- registry-1.docker.io/oughtinc/ice:0.1.1
image: ${COMPOSE_IMAGE:-ice}
2 changes: 1 addition & 1 deletion docker-compose.streamlit.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
services:
ice:
image: registry-1.docker.io/oughtinc/ice:0.1.0-streamlit
image: registry-1.docker.io/oughtinc/ice:0.1.1-streamlit
ports:
- "9000:9000"
2 changes: 1 addition & 1 deletion docker-compose.torch.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
ice:
image: docker.io/oughtinc/ice:0.1.0-torch
image: docker.io/oughtinc/ice:0.1.1-torch
deploy:
resources:
reservations:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
ice:
image: docker.io/oughtinc/ice:0.1.0
image: docker.io/oughtinc/ice:0.1.1
environment:
OUGHT_INFERENCE_API_KEY: ${OUGHT_INFERENCE_API_KEY:-}
OPENAI_API_KEY: ${OPENAI_API_KEY:-}
Expand Down
12 changes: 6 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ice"
version = "0.1.0"
version = "0.1.1"
description = ""
authors = ["Ought <team@ought.org>"]

Expand Down
2 changes: 1 addition & 1 deletion scripts/run-local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ files=""
variant=""
args=""

if [ -z "${BUILD:-}" ] && git diff --name-only 0.1.0 | egrep '^((.+\.)?Dockerfile|nodesource\.gpg|poetry-requirements\.txt|poetry\.lock|pyproject\.toml|ui/package.json|ui/package-lock.json|ui/patches/[^/]+\.patch)$' >/dev/null; then
if [ -z "${BUILD:-}" ] && git diff --name-only 0.1.1 | egrep '^((.+\.)?Dockerfile|nodesource\.gpg|poetry-requirements\.txt|poetry\.lock|pyproject\.toml|ui/package.json|ui/package-lock.json|ui/patches/[^/]+\.patch)$' >/dev/null; then
BUILD=1
fi

Expand Down
4 changes: 2 additions & 2 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
"start": "next start",
"postinstall": "patch-package"
},
"version": "0.1.0"
"version": "0.1.1"
}

0 comments on commit e7099a7

Please sign in to comment.