From a478ab9bce252722817b5a2f10a1c0089ce9980c Mon Sep 17 00:00:00 2001 From: Sourab Mangrulkar <13534540+pacman100@users.noreply.github.com> Date: Thu, 9 Mar 2023 09:03:25 +0530 Subject: [PATCH] Release: v0.2.0 --- setup.py | 2 +- src/peft/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6b26477079..7c658c04a2 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name="peft", - version="0.2.0.dev0", + version="0.2.0", description="Parameter-Efficient Fine-Tuning (PEFT)", license_files=["LICENSE"], long_description=open("README.md", "r", encoding="utf-8").read(), diff --git a/src/peft/__init__.py b/src/peft/__init__.py index 3dd7acfe07..0578148280 100644 --- a/src/peft/__init__.py +++ b/src/peft/__init__.py @@ -17,7 +17,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.2.0.dev0" +__version__ = "0.2.0" from .mapping import MODEL_TYPE_TO_PEFT_MODEL_MAPPING, PEFT_TYPE_TO_CONFIG_MAPPING, get_peft_config, get_peft_model from .peft_model import (