Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
build(*): bump version to 0.17.2 (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
peakji committed Apr 26, 2023
1 parent 997f19a commit e28c5cd
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME := basaran
VERSION := 0.17.1
VERSION := 0.17.2

DOCKER_HUB_OWNER ?= hyperonym
DOCKER_HUB_IMAGE := $(DOCKER_HUB_OWNER)/$(NAME):$(VERSION)
Expand Down
2 changes: 1 addition & 1 deletion deployments/bundle/bloomz-560m.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hyperonym/basaran:0.17.1
FROM hyperonym/basaran:0.17.2

# Set working directory
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion deployments/bundle/chatglm-6b.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hyperonym/basaran:0.17.1
FROM hyperonym/basaran:0.17.2

# Set working directory
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion deployments/bundle/llama-7b.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hyperonym/basaran:0.17.1
FROM hyperonym/basaran:0.17.2

# Set working directory
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion deployments/bundle/private.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hyperonym/basaran:0.17.1
FROM hyperonym/basaran:0.17.2

# Copy model files
COPY my-secret-model /models/my-secret-model
Expand Down
2 changes: 1 addition & 1 deletion deployments/bundle/stablelm-7b.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hyperonym/basaran:0.17.1
FROM hyperonym/basaran:0.17.2

# Set working directory
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion deployments/compose/docker-compose.cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.8"

services:
basaran:
image: hyperonym/basaran:0.17.1
image: hyperonym/basaran:0.17.2
restart: always
environment:
MODEL: "bigscience/bloomz-560m"
Expand Down
2 changes: 1 addition & 1 deletion deployments/compose/docker-compose.gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.8"

services:
basaran:
image: hyperonym/basaran:0.17.1
image: hyperonym/basaran:0.17.2
restart: always
environment:
MODEL: "bigscience/bloomz-560m"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
from setuptools import find_packages, setup

VERSION = "0.17.1"
VERSION = "0.17.2"

setup(
name="basaran",
Expand Down

0 comments on commit e28c5cd

Please sign in to comment.