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

build(*): bump version to 0.17.2 #187

Merged
merged 1 commit into from
Apr 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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