File tree 10 files changed +17
-9
lines changed
10 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ 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
+ ### Changed
13
+
14
+ ### Fixed
15
+
8
16
## [ 2.4.0] [ ]
9
17
10
18
### Added
Original file line number Diff line number Diff line change @@ -622,7 +622,7 @@ def run(self):
622
622
623
623
setup (
624
624
name = "pythonnet" ,
625
- version = "2.4.0 " ,
625
+ version = "2.4.1-dev " ,
626
626
description = ".Net and Mono integration for Python" ,
627
627
url = "https://pythonnet.github.io/" ,
628
628
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.4.0 " ) ]
28
+ [ assembly: AssemblyVersion ( "2.4.1 " ) ]
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.4.0 " ) ,
56
+ Version = new Version ( "2.4.1 " ) ,
57
57
#endif
58
58
CultureInfo = CultureInfo. InvariantCulture
59
59
} ;
Original file line number Diff line number Diff line change 9
9
<RootNamespace >clrmodule</RootNamespace >
10
10
<AssemblyName >clrmodule</AssemblyName >
11
11
<PackageId >clrmodule</PackageId >
12
- <VersionPrefix >2.4.0 </VersionPrefix >
12
+ <VersionPrefix >2.4.1 </VersionPrefix >
13
13
<GenerateAssemblyVersionAttribute >false</GenerateAssemblyVersionAttribute >
14
14
<GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
15
15
<GenerateAssemblyConfigurationAttribute >false</GenerateAssemblyConfigurationAttribute >
Original file line number Diff line number Diff line change 8
8
<AssemblyName >nPython</AssemblyName >
9
9
<RootNamespace >Python.Runtime</RootNamespace >
10
10
<PackageId >nPython</PackageId >
11
- <VersionPrefix >2.4.0 </VersionPrefix >
11
+ <VersionPrefix >2.4.1 </VersionPrefix >
12
12
<GenerateAssemblyVersionAttribute >false</GenerateAssemblyVersionAttribute >
13
13
<GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
14
14
<GenerateAssemblyConfigurationAttribute >false</GenerateAssemblyConfigurationAttribute >
Original file line number Diff line number Diff line change 10
10
<AssemblyName >Python.EmbeddingTest</AssemblyName >
11
11
<RootNamespace >Python.EmbeddingTest</RootNamespace >
12
12
<PackageId >Python.EmbeddingTest</PackageId >
13
- <VersionPrefix >2.4.0 </VersionPrefix >
13
+ <VersionPrefix >2.4.1 </VersionPrefix >
14
14
<GenerateAssemblyVersionAttribute >false</GenerateAssemblyVersionAttribute >
15
15
<GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
16
16
<GenerateAssemblyConfigurationAttribute >false</GenerateAssemblyConfigurationAttribute >
Original file line number Diff line number Diff line change 8
8
<RootNamespace >Python.Runtime</RootNamespace >
9
9
<AssemblyName >Python.Runtime</AssemblyName >
10
10
<PackageId >Python.Runtime</PackageId >
11
- <VersionPrefix >2.4.0 </VersionPrefix >
11
+ <VersionPrefix >2.4.1 </VersionPrefix >
12
12
<GenerateAssemblyVersionAttribute >false</GenerateAssemblyVersionAttribute >
13
13
<GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
14
14
<GenerateAssemblyConfigurationAttribute >false</GenerateAssemblyConfigurationAttribute >
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.4.0 "
5
+ __version__ = "2.4.1 "
6
6
7
7
8
8
class clrproperty (object ):
Original file line number Diff line number Diff line change 7
7
<AssemblyName >Python.Test</AssemblyName >
8
8
<RootNamespace >Python.Test</RootNamespace >
9
9
<PackageId >Python.Test</PackageId >
10
- <VersionPrefix >2.4.0 </VersionPrefix >
10
+ <VersionPrefix >2.4.1 </VersionPrefix >
11
11
<OutputPath >bin\</OutputPath >
12
12
<AppendTargetFrameworkToOutputPath Condition =" '$(TargetFramework)'=='net40'" >false</AppendTargetFrameworkToOutputPath >
13
13
<DocumentationFile Condition =" '$(TargetFramework)'=='net40'" >$(OutputPath)\$(AssemblyName).xml</DocumentationFile >
You can’t perform that action at this time.
0 commit comments