File tree 7 files changed +20
-6
lines changed
7 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 2.3.0
2
+ current_version = 2.4.0.dev0
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,6 +5,20 @@ 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] [ ]
9
+
10
+ ### Added
11
+
12
+ - Added ` Foo ` feature
13
+
14
+ ### Changed
15
+
16
+ - Changed ` Bar ` feature
17
+
18
+ ### Fixed
19
+
20
+ - Fixed ` FooBar ` bug
21
+
8
22
## [ 2.3.0] [ ] - 2017-03-11
9
23
10
24
### Added
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : pythonnet
3
- version : " 2.3.0 "
3
+ version : " 2.4.0.dev0 "
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 " ,
368
+ version = "2.4.0.dev0 " ,
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 25
25
// Version Information. Keeping it simple. May need to revisit for Nuget
26
26
// See: https://codingforsmarties.wordpress.com/2016/01/21/how-to-version-assemblies-destined-for-nuget/
27
27
// AssemblyVersion can only be numeric
28
- [ assembly: AssemblyVersion ( "2.3 .0" ) ]
28
+ [ assembly: AssemblyVersion ( "2.4 .0" ) ]
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public static void initclr()
53
53
{
54
54
#if USE_PYTHON_RUNTIME_VERSION
55
55
// Has no effect until SNK works. Keep updated anyways.
56
- Version = new Version ( "2.3 .0" ) ,
56
+ Version = new Version ( "2.4 .0" ) ,
57
57
#endif
58
58
CultureInfo = CultureInfo. InvariantCulture
59
59
} ;
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 "
5
+ __version__ = "2.4.0.dev0 "
6
6
7
7
8
8
class clrproperty (object ):
You can’t perform that action at this time.
0 commit comments