diff --git a/gguf-py/README.md b/gguf-py/README.md index 6786d2907..03ad306ec 100644 --- a/gguf-py/README.md +++ b/gguf-py/README.md @@ -36,7 +36,7 @@ pip install build twine Then, folow these steps to release a new version: -1. Update versions in `pyproject.toml` and `__init__.py`. +1. Update the version in `pyproject.toml`. 2. Build the package: ```sh @@ -52,3 +52,4 @@ python -m twine upload dist/* ## TODO - [ ] Add tests - [ ] Include conversion scripts as command line entry points in this package. +- Add CI workflow for releasing the package. diff --git a/gguf-py/gguf/__init__.py b/gguf-py/gguf/__init__.py index 1a7d93032..718ea71eb 100644 --- a/gguf-py/gguf/__init__.py +++ b/gguf-py/gguf/__init__.py @@ -1,3 +1 @@ from .gguf import GGUFWriter - -__version__ = '0.1.0' diff --git a/gguf-py/pyproject.toml b/gguf-py/pyproject.toml index 87605af26..a6bce9460 100644 --- a/gguf-py/pyproject.toml +++ b/gguf-py/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gguf" -version = "0.1.0" +version = "0.2.0" description = "Write ML models in GGUF for GGML" authors = ["GGML "] packages = [