Skip to content

Commit 51ec8a4

Browse files
committed
Bump version: 2.3.0.→ 2.4.0.dev0
Can't start at dev1 as bumpversion breaks if we add a minimum start version for dev.
1 parent c3b59db commit 51ec8a4

File tree

7 files changed

+20
-6
lines changed

7 files changed

+20
-6
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
2+
current_version = 2.4.0.dev0
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

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

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

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+
822
## [2.3.0][] - 2017-03-11
923

1024
### Added

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"
3+
version: "2.4.0.dev0"
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",
368+
version="2.4.0.dev0",
369369
description=".Net and Mono integration for Python",
370370
url='https://pythonnet.github.io/',
371371
license='MIT',

src/SharedAssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
// Version Information. Keeping it simple. May need to revisit for Nuget
2626
// See: https://codingforsmarties.wordpress.com/2016/01/21/how-to-version-assemblies-destined-for-nuget/
2727
// AssemblyVersion can only be numeric
28-
[assembly: AssemblyVersion("2.3.0")]
28+
[assembly: AssemblyVersion("2.4.0")]

src/clrmodule/ClrModule.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static void initclr()
5353
{
5454
#if USE_PYTHON_RUNTIME_VERSION
5555
// Has no effect until SNK works. Keep updated anyways.
56-
Version = new Version("2.3.0"),
56+
Version = new Version("2.4.0"),
5757
#endif
5858
CultureInfo = CultureInfo.InvariantCulture
5959
};

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"
5+
__version__ = "2.4.0.dev0"
66

77

88
class clrproperty(object):

0 commit comments

Comments
 (0)