File tree Expand file tree Collapse file tree 10 files changed +11
-13
lines changed Expand file tree Collapse file tree 10 files changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,9 @@ 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.5.1 ] [ ] - 2020-06-18
9
9
10
- ### Added
11
-
12
- ### Changed
10
+ Bugfix release.
13
11
14
12
### Fixed
15
13
Original file line number Diff line number Diff line change @@ -629,7 +629,7 @@ def run(self):
629
629
630
630
setup (
631
631
name = "pythonnet" ,
632
- version = "2.5.0 " ,
632
+ version = "2.5.1 " ,
633
633
description = ".Net and Mono integration for Python" ,
634
634
url = "https://pythonnet.github.io/" ,
635
635
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.5.0 " ) ]
28
+ [ assembly: AssemblyVersion ( "2.5.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.5.0 " ) ,
56
+ Version = new Version ( "2.5.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.5.0 </VersionPrefix >
12
+ <VersionPrefix >2.5.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.5.0 </VersionPrefix >
11
+ <VersionPrefix >2.5.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.5.0 </VersionPrefix >
13
+ <VersionPrefix >2.5.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 >pythonnet</PackageId >
11
- <VersionPrefix >2.5.0 </VersionPrefix >
11
+ <VersionPrefix >2.5.1 </VersionPrefix >
12
12
<GeneratePackageOnBuild >true</GeneratePackageOnBuild >
13
13
<GenerateAssemblyInfo >false</GenerateAssemblyInfo >
14
14
<Title >Python.NET</Title >
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.5.0 "
5
+ __version__ = "2.5.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.5.0 </VersionPrefix >
10
+ <VersionPrefix >2.5.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