Skip to content

Commit

Permalink
release 4.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
trehn committed Apr 2, 2024
1 parent 26f21e2 commit 6c0c908
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# 4.18.0

2024-04-01

* added support for Python 3.12
* removed support for Python 3.7
* added `download_timeout` for file items
* performance improvements
* improved display of long-running jobs
* improved handling of connection errors
* improved handling of services on OpenBSD
* fixed fixing of symlink ownership
* fixed detection of installed packages with `pacman`
* fixed handling of binary files with `bw pw -f`
* fixed missing setuptools dependency
* fixed `block_concurrent()` not working if item provides canned actions


# 4.17.2

2023-05-05
Expand Down
2 changes: 1 addition & 1 deletion bundlewrap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = (4, 17, 2)
VERSION = (4, 18, 0)
VERSION_STRING = ".".join([str(v) for v in VERSION])
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="bundlewrap",
version="4.17.2",
version="4.18.0",
description="Config management with Python",
long_description=(
"By allowing for easy and low-overhead config management, BundleWrap fills the gap between complex deployments using Chef or Puppet and old school system administration over SSH.\n"
Expand Down

0 comments on commit 6c0c908

Please sign in to comment.