File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,15 @@ for an average of one 33-commit release about every 9 weeks. Versions
55are named according to the [ CalVer] ( https://calver.org ) versioning
66scheme (` YY.MINOR.MICRO ` ).
77
8+ ## 25.0.0
9+
10+ _ (February 2, 2025)_
11+
12+ - Added Python 3.13 support
13+ - Replace deprecated ` utcnow() `
14+ - Add fsync to [ ` fileutils.atomic_save ` ] [ fileutils.atomic_save ]
15+ - Add [ ` fileutils.rotate_file ` ] [ fileutils.rotate_file ]
16+
817## 24.1.0
918
1019_ (November 1, 2024)_
@@ -1064,6 +1073,7 @@ added in this release.
10641073[ excutils.ParsedException ] : http://boltons.readthedocs.org/en/latest/excutils.html#boltons.excutils.ParsedException
10651074[ fileutils ] : http://boltons.readthedocs.org/en/latest/fileutils.html
10661075[ fileutils.replace ] : http://boltons.readthedocs.org/en/latest/fileutils.html#boltons.fileutils.replace
1076+ [ fileutils.rotate_file ] : http://boltons.readthedocs.org/en/latest/fileutils.html#boltons.fileutils.rotate_file
10671077[ fileutils.atomic_rename ] : http://boltons.readthedocs.org/en/latest/fileutils.html#boltons.fileutils.atomic_rename
10681078[ fileutils.atomic_save ] : http://boltons.readthedocs.org/en/latest/fileutils.html#boltons.fileutils.atomic_save
10691079[ fileutils.AtomicSaver ] : http://boltons.readthedocs.org/en/latest/fileutils.html#boltons.fileutils.AtomicSaver
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ close a few remaining gaps.
1616
1717.. autofunction :: boltons.fileutils.copytree
1818
19+ .. autofunction :: boltons.fileutils.rotate_file
20+
1921
2022Atomic File Saving
2123------------------
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ build-backend = "flit_core.buildapi"
5454# * Bump pyproject.toml version off of -dev
5555# * git commit -a -m "bump version for x.y.z release"
5656# * rm -rf dist/*
57- # * python -m build
57+ # * flit build
5858# * twine upload dist/*
5959# * bump docs/conf.py version
6060# * git commit
You can’t perform that action at this time.
0 commit comments