Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c3b59db

Browse files
committed
Bump version: 2.3.0.dev1 → 2.3.0 release
1 parent 21d1636 commit c3b59db

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.3.0.dev1
2+
current_version = 2.3.0
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
44
serialize =
55
{major}.{minor}.{patch}.{release}{dev}

CHANGELOG.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning][].
55

66
This document follows the conventions laid out in [Keep a CHANGELOG][].
77

8-
## [unreleased][]
8+
## [2.3.0][] - 2017-03-11
99

1010
### Added
1111

@@ -24,8 +24,8 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
2424
- Added `requirements.txt`
2525
- Added to `PythonEngine` methods `Eval` and `Exec` (#389)
2626
- Added implementations of `ICustomMarshal` (#407)
27-
- Added docker images
28-
- Added hooks in pyinstaller and cx_freeze for pythonnet
27+
- Added docker images (#322)
28+
- Added hooks in `pyinstaller` and `cx_freeze` for `pythonnet` (#66)
2929

3030
### Changed
3131

@@ -543,7 +543,9 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
543543

544544
[semantic versioning]: http://semver.org/
545545

546-
[unreleased]: ../../compare/v2.2.2...HEAD
546+
[unreleased]: ../../compare/v2.3.0...HEAD
547+
548+
[2.3.0]: ../../compare/v2.2.2...v2.3.0
547549

548550
[2.2.2]: ../../compare/v2.2.1...v2.2.2
549551

conda.recipe/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: pythonnet
3-
version: "2.3.0.dev1"
3+
version: "2.3.0"
44

55
build:
66
skip: True # [not win]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def run(self):
365365

366366
setup(
367367
name="pythonnet",
368-
version="2.3.0.dev1",
368+
version="2.3.0",
369369
description=".Net and Mono integration for Python",
370370
url='https://pythonnet.github.io/',
371371
license='MIT',

src/runtime/resources/clr.py

+1-1
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.3.0.dev1"
5+
__version__ = "2.3.0"
66

77

88
class clrproperty(object):

0 commit comments

Comments
 (0)