Skip to content

Commit e6cd24c

Browse files
Release v0.12.0 (#1946)
Also: Fix small error in doc: mentions wrong version
1 parent 05f57e9 commit e6cd24c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/source/developer_guides/troubleshooting.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ trainer.train()
7171

7272
<Tip>
7373

74-
Starting from PEFT verion v0.11.0, PEFT automatically promotes the dtype of adapter weights from `torch.float16` and `torch.bfloat16` to `torch.float32` where appropriate. To _prevent_ this behavior, you can pass `autocast_adapter_dtype=False` to [`~get_peft_model`], to [`~PeftModel.from_pretrained`], and to [`~PeftModel.load_adapter`].
74+
Starting from PEFT verion v0.12.0, PEFT automatically promotes the dtype of adapter weights from `torch.float16` and `torch.bfloat16` to `torch.float32` where appropriate. To _prevent_ this behavior, you can pass `autocast_adapter_dtype=False` to [`~get_peft_model`], to [`~PeftModel.from_pretrained`], and to [`~PeftModel.load_adapter`].
7575

7676
</Tip>
7777

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from setuptools import find_packages, setup
1616

1717

18-
VERSION = "0.11.2.dev0"
18+
VERSION = "0.12.0"
1919

2020
extras = {}
2121
extras["quality"] = [

src/peft/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# See the License for the specific language governing permissions and
1818
# limitations under the License.
1919

20-
__version__ = "0.11.2.dev0"
20+
__version__ = "0.12.0"
2121

2222
from .auto import (
2323
AutoPeftModel,

0 commit comments

Comments
 (0)