Skip to content

Commit 2da060a

Browse files
Merge pull request #3436 from nexB/release-prep-v32.0.5rc3
Release prep v32.0.5rc3
2 parents 098348b + 8db0fce commit 2da060a

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

.github/workflows/scancode-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,9 @@ jobs:
368368
fail-fast: true
369369
matrix:
370370
os: [macos-11, macos-12]
371-
pyver: ["3.7", "3.8", "3.9", "3.10", "3.11"]
371+
# python 3.7 is temporarily removed from release scripts
372+
# see https://github.com/nexB/scancode-toolkit/issues/3435
373+
pyver: ["3.8", "3.9", "3.10", "3.11"]
372374

373375
steps:
374376
- uses: actions/checkout@v3

CHANGELOG.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,15 @@ v32.1.0 (next, roadmap)
4242
See https://github.com/nexB/scancode-toolkit/issues/1745
4343

4444

45-
v32.0.5rc1 - 2023-06-22
45+
v32.0.5rc3 - 2023-06-23
46+
------------------------
47+
48+
The previous release v32.0.5rc3 was failing on mac app release
49+
tests, see https://github.com/nexB/scancode-toolkit/issues/3435
50+
for more details. This release attempts to fix this and release
51+
correctly.
52+
53+
v32.0.5rc2 - 2023-06-22
4654
------------------------
4755

4856
The previous release v32.0.5rc1 failed to upload pypi wheels

setup-mini.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancode-toolkit-mini
3-
version = 32.0.5rc2
3+
version = 32.0.5rc3
44
license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft
55

66
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scancode-toolkit
3-
version = 32.0.5rc2
3+
version = 32.0.5rc3
44
license = Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-other-permissive AND LicenseRef-scancode-other-copyleft
55

66
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390

src/scancode_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,12 @@ def _create_dir(location):
132132
# 4. hardcoded This is the default, fallback version in case package is not installed or we
133133
# do not have a proper version otherwise.
134134
if not __version__:
135-
__version__ = '32.0.5rc2'
135+
__version__ = '32.0.5rc3'
136136

137137
#######################
138138
# used to warn user when the version is out of date
139139
# this is (year, month, day)
140-
__release_date__ = datetime.datetime(2023, 6, 22)
140+
__release_date__ = datetime.datetime(2023, 6, 23)
141141

142142
# See https://github.com/nexB/scancode-toolkit/issues/2653 for more information
143143
# on the data format version

0 commit comments

Comments
 (0)