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

Commit

Permalink
Release: 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
BobaZooba committed Oct 15, 2023
1 parent 1bfa2bf commit e8d66f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# Setup
setup(
name="xllm",
version="0.0.2-dev",
version="0.0.3",
description="Simple & Cutting Edge LLM Finetuning",
license_files=["LICENSE"],
long_description=open("README.md", "r", encoding="utf-8").read(),
Expand Down Expand Up @@ -95,12 +95,11 @@

# Release checklist
# 1. Change the version in __init__.py and setup.py.
# 2. Commit these changes with the message: "Release: VERSION"
# 3. Run make test-pypi-release VERSION=VERSION
# 4. Make sure test pypi works correct
# 5. Run pypi-upload
# 6. Add release notes to the tag in github once everything is looking hunky-dory.
# 7. Update the version in __init__.py, setup.py to the new version "-dev" and push to master
# 2. Run "make test-pypi-release VERSION=VERSION"
# 3. Make sure test pypi works correct
# 4. Run "make pypi-upload"
# 5. Add release notes to the tag in github once everything is looking hunky-dory.
# 6. Add new dev "make push-dev-version VERSION=VERSION"


# Legacy Release checklist
Expand Down
2 changes: 1 addition & 1 deletion src/xllm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# ruff: noqa: F401

__version__ = "0.0.2-dev"
__version__ = "0.0.3"

from . import enums, types
from .cli.fuse import cli_run_fuse
Expand Down

0 comments on commit e8d66f7

Please sign in to comment.