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

Commit

Permalink
bump: version 0.4.5 → 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenlu committed Aug 14, 2023
1 parent 567a0ec commit 7bcdfda
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 3 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# Changelog

## v0.5.0 (2023-08-14)

### Feat

- support more params
- support more params
- support disable stream reply #20
- fix missing reply
- use dingtalk stream mode
- support api_key

### Fix

- set default value #21
- fix stream reply
- add help commands
- add help commands
- fix bugs
- add help commands
- add help commands
- add help commands
- add help commands
- add help commands
- add help commands
- add start cmd
- support reset conversation

## v0.4.9 (2023-04-26)

## v0.4.8 (2023-04-17)

## v0.4.7 (2023-04-03)

## v0.4.6 (2023-03-28)

### Fix

- fix #3

## v0.4.5 (2023-04-17)

## v0.4.7 (2023-04-03)
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ENV PATH="/root/.cargo/bin:${PATH}"


# Install apt packages
RUN apt-get update && apt-get install --no-install-recommends -y \
RUN apt-get update --fix-missing && apt-get install --no-install-recommends -y \
# dependencies for building Python packages
build-essential \
# dependencies for building tiktoken
Expand Down Expand Up @@ -48,7 +48,7 @@ RUN addgroup --system chatbot \
&& adduser --system --ingroup chatbot chatbot

# Install required system dependencies
RUN apt-get update \
RUN apt-get update --fix-missing \
# cleaning up unused files
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
&& rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ skip_gitignore = true
#skip_glob = docs/conf.py

[tool.commitizen]
version = "0.4.5"
version = "0.5.0"
changelog_start_rev = "0.3.0"
tag_format = "v$major.$minor.$patch$prerelease"
version_files = ["pyproject.toml:version", "chatbot/__init__.py"]
Expand Down

0 comments on commit 7bcdfda

Please sign in to comment.