Skip to content

Commit

Permalink
Version bump to 0.1.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
spillai committed Oct 19, 2023
1 parent 08c2e9c commit 3c16a01
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Generate / Deploy Docs

on:
push:
branches: [main]
paths:
- "nos/version.py"
release:
types: [released]

Expand Down
5 changes: 2 additions & 3 deletions examples/skypilot/app/docker-compose.cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ version: "3.8"
services:
nos-http-proxy:
image: autonomi/nos:latest-cpu
command: nos-http-server
command: nos-http-server --port 80
ports:
- 8000:8000
- 8000:80
environment:
- NOS_HOME=/app/.nos
- NOS_LOGGING_LEVEL=INFO
Expand All @@ -22,7 +22,6 @@ services:
nos-server-cpu:
image: autonomi/nos:latest-cpu
ports:
- 8000:8000
- 50051:50051
environment:
- NOS_HOME=/app/.nos
Expand Down
8 changes: 4 additions & 4 deletions examples/skypilot/app/docker-compose.gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ version: "3.8"

services:
nos-http-proxy:
image: autonomi/nos:latest-gpu
command: nos-http-server
image: autonomi/nos:0.1.0rc1-gpu
command: nos-http-server --port 80
ports:
- 8000:8000
- 8000:80
environment:
- NOS_HOME=/app/.nos
- NOS_LOGGING_LEVEL=INFO
Expand All @@ -20,7 +20,7 @@ services:
- nos-server-gpu

nos-server-gpu:
image: autonomi/nos:latest-gpu
image: autonomi/nos:0.1.0rc1-gpu
ports:
- 50051:50051
environment:
Expand Down
2 changes: 1 addition & 1 deletion nos/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0a0"
__version__ = "0.1.0rc1"

0 comments on commit 3c16a01

Please sign in to comment.