File tree Expand file tree Collapse file tree 5 files changed +10
-8
lines changed
Expand file tree Collapse file tree 5 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 2.3.0.dev1
2+ current_version = 2.3.0
33parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
44serialize =
55 {major}.{minor}.{patch}.{release}{dev}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning][].
55
66This 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
Original file line number Diff line number Diff line change 11package :
22 name : pythonnet
3- version : " 2.3.0.dev1 "
3+ version : " 2.3.0"
44
55build :
66 skip : True # [not win]
Original file line number Diff line number Diff line change @@ -365,7 +365,7 @@ def run(self):
365365
366366setup (
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' ,
Original file line number Diff line number Diff line change 22Code 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
88class clrproperty (object ):
You can’t perform that action at this time.
0 commit comments