Skip to content

Commit b6bf37b

Browse files
authored
PYTHON-4389 Fix tag template handling in release (#849)
1 parent b741f2c commit b6bf37b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/release-python.yml

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ jobs:
5151
version: ${{ inputs.version }}
5252
working_directory: ./bindings/python
5353
dry_run: ${{ inputs.dry_run }}
54+
tag_template: "pymongocrypt-${VERSION}"
55+
tag_message_template: "Release PyMongoCrypt ${VERSION}"
5456

5557
build-dist:
5658
needs: [pre-publish]
@@ -92,5 +94,6 @@ jobs:
9294
product_name: ${{ env.PRODUCT_NAME }}
9395
silk_asset_group: ${{ env.SILK_ASSET_GROUP }}
9496
evergreen_project: ${{ env.EVERGREEN_PROJECT }}
97+
tag_template: "pymongocrypt-${VERSION}"
9598
token: ${{ github.token }}
9699
dry_run: ${{ inputs.dry_run }}

bindings/python/pymongocrypt/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "1.10.0"
15+
__version__ = "1.10.0.dev0"
1616

1717
_MIN_LIBMONGOCRYPT_VERSION = "1.8.0"

0 commit comments

Comments
 (0)