summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-04-07 12:31:34 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-04-07 12:31:34 +0000
commit5a2d08d347c5f7f28ad23487f9700555e68257c4 (patch)
tree7f53016d6d2e5331d4ad9f58f11fe801a6094fd7
parentReleasing debian version 3.2.1-1. (diff)
downloadpre-commit-5a2d08d347c5f7f28ad23487f9700555e68257c4.tar.xz
pre-commit-5a2d08d347c5f7f28ad23487f9700555e68257c4.zip
Merging upstream version 3.2.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r--CHANGELOG.md8
-rw-r--r--pre_commit/languages/swift.py2
-rw-r--r--setup.cfg2
3 files changed, 10 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dfb8f80..efd96c7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+3.2.2 - 2023-04-03
+==================
+
+### Fixes
+- Fix support for swift >= 5.8.
+ - #2836 PR by @edelabar.
+ - #2835 issue by @kgrobelny-intive.
+
3.2.1 - 2023-03-25
==================
diff --git a/pre_commit/languages/swift.py b/pre_commit/languages/swift.py
index 8250ab7..f16bb04 100644
--- a/pre_commit/languages/swift.py
+++ b/pre_commit/languages/swift.py
@@ -44,7 +44,7 @@ def install_environment(
os.mkdir(envdir)
cmd_output_b(
'swift', 'build',
- '-C', prefix.prefix_dir,
+ '--package-path', prefix.prefix_dir,
'-c', BUILD_CONFIG,
'--build-path', os.path.join(envdir, BUILD_DIR),
)
diff --git a/setup.cfg b/setup.cfg
index 350fe23..89e8e4a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = pre_commit
-version = 3.2.1
+version = 3.2.2
description = A framework for managing and maintaining multi-language pre-commit hooks.
long_description = file: README.md
long_description_content_type = text/markdown