File tree 5 files changed +10
-8
lines changed
5 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 2.3.0.dev1
2
+ current_version = 2.3.0
3
3
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
4
4
serialize =
5
5
{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][].
5
5
6
6
This document follows the conventions laid out in [ Keep a CHANGELOG] [ ] .
7
7
8
- ## [ unreleased ] [ ]
8
+ ## [ 2.3.0 ] [ ] - 2017-03-11
9
9
10
10
### Added
11
11
@@ -24,8 +24,8 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
24
24
- Added ` requirements.txt `
25
25
- Added to ` PythonEngine ` methods ` Eval ` and ` Exec ` (#389 )
26
26
- 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 )
29
29
30
30
### Changed
31
31
@@ -543,7 +543,9 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
543
543
544
544
[ semantic versioning ] : http://semver.org/
545
545
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
547
549
548
550
[ 2.2.2 ] : ../../compare/v2.2.1...v2.2.2
549
551
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : pythonnet
3
- version : " 2.3.0.dev1 "
3
+ version : " 2.3.0"
4
4
5
5
build :
6
6
skip : True # [not win]
Original file line number Diff line number Diff line change @@ -365,7 +365,7 @@ def run(self):
365
365
366
366
setup (
367
367
name = "pythonnet" ,
368
- version = "2.3.0.dev1 " ,
368
+ version = "2.3.0" ,
369
369
description = ".Net and Mono integration for Python" ,
370
370
url = 'https://pythonnet.github.io/' ,
371
371
license = 'MIT' ,
Original file line number Diff line number Diff line change 2
2
Code in this module gets loaded into the main clr module.
3
3
"""
4
4
5
- __version__ = "2.3.0.dev1 "
5
+ __version__ = "2.3.0"
6
6
7
7
8
8
class clrproperty (object ):
You can’t perform that action at this time.
0 commit comments