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

Commit 22a2c1f

Browse files
authored
build(*): bump version to 0.16.2 (#162)
1 parent 2c97344 commit 22a2c1f

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
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.16.1
2+
VERSION := 0.16.2
33

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

deployments/bundle/alpaca-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.16.1
1+
FROM hyperonym/basaran:0.16.2
22

33
# Set working directory
44
WORKDIR /app

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.16.1
1+
FROM hyperonym/basaran:0.16.2
22

33
# Set working directory
44
WORKDIR /app

deployments/bundle/bloomz-7b1-mt.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hyperonym/basaran:0.16.1
1+
FROM hyperonym/basaran:0.16.2
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.16.1
1+
FROM hyperonym/basaran:0.16.2
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.16.1
1+
FROM hyperonym/basaran:0.16.2
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.16.1
1+
FROM hyperonym/basaran:0.16.2
22

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

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.16.1
5+
image: hyperonym/basaran:0.16.2
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.16.1
5+
image: hyperonym/basaran:0.16.2
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.16.1"
6+
VERSION = "0.16.2"
77

88
setup(
99
name="basaran",

0 commit comments

Comments
 (0)