Skip to content

Commit 93eea9c

Browse files
authored
Bump version and minor instruction fix (#2439)
1 parent b34d8a2 commit 93eea9c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from setuptools import find_packages, setup
1616

1717

18-
VERSION = "0.15.0"
18+
VERSION = "0.15.1.dev0"
1919

2020
extras = {}
2121
extras["quality"] = [
@@ -90,7 +90,7 @@
9090
# 1. Change the version in __init__.py and setup.py to the release version, e.g. from "0.6.1.dev0" to "0.7.0"
9191
# 2. Check if there are any deprecations that need to be addressed for this release by searching for "# TODO" in the code
9292
# 3. Commit these changes with the message: "Release: VERSION", create a PR and merge it.
93-
# 4. Add a tag in git to mark the release: "git tag -a VERSION -m 'Adds tag VERSION for pypi' "
93+
# 4. Add a tag in git to mark the release: "git tag -a v<VERSION> -m 'Adds tag <VERSION> for pypi' "
9494
# Push the tag to git:
9595
# git push --tags origin main
9696
# It is necessary to work on the original repository, not on a fork.

src/peft/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.15.0"
15+
__version__ = "0.15.1.dev0"
1616

1717
from .auto import (
1818
MODEL_TYPE_TO_PEFT_MODEL_MAPPING,

0 commit comments

Comments
 (0)