Skip to content

Commit 7814f1a

Browse files
committed
Merge branch 'master' of github.com:mongodb/mongo-python-driver
2 parents e133da5 + 78724cd commit 7814f1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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: mongodb-python-driver
2424
EVERGREEN_PROJECT: mongo-python-driver
2525
# Constant
26-
DRY_RUN: ${{ inputs.dry_run || 'true' }}
26+
DRY_RUN: ${{ inputs.dry_run == 'true' }}
2727
FOLLOWING_VERSION: ${{ inputs.following_version || '' }}
2828
VERSION: ${{ inputs.version || '10.10.10.10' }}
2929

pymongo/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import re
1919
from typing import List, Tuple, Union
2020

21-
__version__ = "4.11.0.dev0"
21+
__version__ = "4.12.0.dev0"
2222

2323

2424
def get_version_tuple(version: str) -> Tuple[Union[int, str], ...]:

0 commit comments

Comments
 (0)