Skip to content

Commit ce53caf

Browse files
release 0.43.2
1 parent 1571110 commit ce53caf

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
### 0.43.2
2+
3+
#### Improvements:
4+
5+
- docs: FSDP+QLoRA and CPU install guide (#1211 #1227, thanks @stevhliu)
6+
- Add CUDA 12.5 and update 12.4 builds (#1284)
7+
8+
#### Bug Fixes
9+
10+
- 4bit getstate and 8bit deepcopy (#1230 #1231, thanks @BenjaminBossan)
11+
- missing optimizers in `str2optimizer32bit` (#1222, thanks @EtienneDosSantos)
12+
- CUDA 12.5 build issue (#1273, thanks @HennerM)
13+
- fix for min_8bit_size functionality in Optimizer base classes (#1286, thanks @Edenzzzz)
14+
- QLoRA mem bug (#1270, thanks @Ther-nullptr)
15+
- tests for cpu only platforms (#1259, thanks @galqiwi)
16+
- restoration of quant_storage for CPU offloading (#1279)
17+
- optim update error with non-contiguous grads/params (deepspeed) (#1187)
18+
119
### 0.43.1
220

321
#### Improvements:

_typos.toml

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
[files]
22

3+
[default]
4+
extend-ignore-re = [
5+
"@Ther-nul", # valid Github user
6+
]
7+
38
[default.extend-identifiers]
49

510
[type.py.extend-words]

bitsandbytes/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
"optim.optimizer.MockArgs": False,
2222
}
2323

24-
__version__ = "0.43.2.dev"
24+
__version__ = "0.43.2"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def has_ext_modules(self):
2525

2626
setup(
2727
name="bitsandbytes",
28-
version="0.43.2.dev",
28+
version="0.43.2",
2929
author="Tim Dettmers",
3030
author_email="[email protected]",
3131
description="k-bit optimizers and matrix multiplication routines.",

0 commit comments

Comments
 (0)