Skip to content

Commit f0175e0

Browse files
authored
Merge branch 'main' into main
2 parents eeeb058 + e0ada88 commit f0175e0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ env:
2323
SILK_ASSET_GROUP: django-mongodb-backend-main
2424
EVERGREEN_PROJECT: django-mongodb-backend
2525
# Constant
26-
DRY_RUN: ${{ inputs.dry_run == 'true' }}
26+
DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && inputs.dry_run || 'true' }}
2727
FOLLOWING_VERSION: ${{ inputs.following_version || '' }}
2828
VERSION: ${{ inputs.version || '10.10.10.10' }}
2929

django_mongodb_backend/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "5.0.0a4.dev0"
1+
__version__ = "5.0.0a3"
22

33
# Check Django compatibility before other imports which may fail if the
44
# wrong version of Django is installed.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ keywords = [
1919
"django"
2020
]
2121
classifiers = [
22-
"Development Status :: 2 - Pre-Alpha",
22+
"Development Status :: 4 - Beta",
2323
"Framework :: Django",
2424
"Framework :: Django :: 5.0",
2525
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)