Skip to content

Commit 868cd52

Browse files
committed
Bump all relevant versions to 2.4.0-rc2
1 parent c459cac commit 868cd52

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

conda.recipe/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package:
22
name: pythonnet
3-
version: "2.4.0.dev0"
3+
version: {{ GIT_DESCRIBE_VERSION }}
44

55
build:
66
skip: True # [not win]
7-
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
7+
number: {{ GIT_DESCRIBE_NUMBER }}
88
{% if environ.get('GIT_DESCRIBE_NUMBER', '0') == '0' %}string: py{{ environ.get('PY_VER').replace('.', '') }}_0
99
{% else %}string: py{{ environ.get('PY_VER').replace('.', '') }}_{{ environ.get('GIT_BUILD_STR', 'GIT_STUB') }}{% endif %}
1010

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ def run(self):
622622

623623
setup(
624624
name="pythonnet",
625-
version="2.4.0.dev0",
625+
version="2.4.0-rc2",
626626
description=".Net and Mono integration for Python",
627627
url="https://pythonnet.github.io/",
628628
license="MIT",

src/runtime/resources/clr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Code in this module gets loaded into the main clr module.
33
"""
44

5-
__version__ = "2.4.0.dev0"
5+
__version__ = "2.4.0-rc2"
66

77

88
class clrproperty(object):

0 commit comments

Comments
 (0)