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

Commit 5ef5ef0

Browse files
authored
build(*): bump version to 0.18.1 (#200)
1 parent 3b53e72 commit 5ef5ef0

9 files changed

+9
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME := basaran
2-
VERSION := 0.18.0
2+
VERSION := 0.18.1
33

44
DOCKER_HUB_OWNER ?= hyperonym
55
DOCKER_HUB_IMAGE := $(DOCKER_HUB_OWNER)/$(NAME):$(VERSION)

deployments/bundle/bloomz-560m.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hyperonym/basaran:0.18.0
1+
FROM hyperonym/basaran:0.18.1
22

33
# Set working directory
44
WORKDIR /app

deployments/bundle/chatglm-6b.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hyperonym/basaran:0.18.0
1+
FROM hyperonym/basaran:0.18.1
22

33
# Set working directory
44
WORKDIR /app

deployments/bundle/llama-7b.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hyperonym/basaran:0.18.0
1+
FROM hyperonym/basaran:0.18.1
22

33
# Set working directory
44
WORKDIR /app

deployments/bundle/private.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hyperonym/basaran:0.18.0
1+
FROM hyperonym/basaran:0.18.1
22

33
# Copy model files
44
COPY my-secret-model /models/my-secret-model

deployments/bundle/stablelm-7b.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hyperonym/basaran:0.18.0
1+
FROM hyperonym/basaran:0.18.1
22

33
# Set working directory
44
WORKDIR /app

deployments/compose/docker-compose.cpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.8"
22

33
services:
44
basaran:
5-
image: hyperonym/basaran:0.18.0
5+
image: hyperonym/basaran:0.18.1
66
restart: always
77
environment:
88
MODEL: "bigscience/bloomz-560m"

deployments/compose/docker-compose.gpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.8"
22

33
services:
44
basaran:
5-
image: hyperonym/basaran:0.18.0
5+
image: hyperonym/basaran:0.18.1
66
restart: always
77
environment:
88
MODEL: "bigscience/bloomz-560m"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
from setuptools import find_packages, setup
55

6-
VERSION = "0.18.0"
6+
VERSION = "0.18.1"
77

88
setup(
99
name="basaran",

0 commit comments

Comments
 (0)