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][].
55
66This document follows the conventions laid out in [ Keep a CHANGELOG] [ ] .
77
8- ## [ Unreleased ] [ ]
8+ ## [ 2.5.1 ] [ ] - 2020-06-18
99
10- ### Added
11-
12- ### Changed
10+ Bugfix release.
1311
1412### Fixed
1513
Original file line number Diff line number Diff line change @@ -629,7 +629,7 @@ def run(self):
629629
630630setup (
631631 name = "pythonnet" ,
632- version = "2.5.0 " ,
632+ version = "2.5.1 " ,
633633 description = ".Net and Mono integration for Python" ,
634634 url = "https://pythonnet.github.io/" ,
635635 license = "MIT" ,
Original file line number Diff line number Diff line change 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.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()
5353 {
5454#if USE_PYTHON_RUNTIME_VERSION
5555 // Has no effect until SNK works. Keep updated anyways.
56- Version = new Version ( "2.5.0 " ) ,
56+ Version = new Version ( "2.5.1 " ) ,
5757#endif
5858 CultureInfo = CultureInfo. InvariantCulture
5959 } ;
Original file line number Diff line number Diff line change 99 <RootNamespace >clrmodule</RootNamespace >
1010 <AssemblyName >clrmodule</AssemblyName >
1111 <PackageId >clrmodule</PackageId >
12- <VersionPrefix >2.5.0 </VersionPrefix >
12+ <VersionPrefix >2.5.1 </VersionPrefix >
1313 <GenerateAssemblyVersionAttribute >false</GenerateAssemblyVersionAttribute >
1414 <GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
1515 <GenerateAssemblyConfigurationAttribute >false</GenerateAssemblyConfigurationAttribute >
Original file line number Diff line number Diff line change 88 <AssemblyName >nPython</AssemblyName >
99 <RootNamespace >Python.Runtime</RootNamespace >
1010 <PackageId >nPython</PackageId >
11- <VersionPrefix >2.5.0 </VersionPrefix >
11+ <VersionPrefix >2.5.1 </VersionPrefix >
1212 <GenerateAssemblyVersionAttribute >false</GenerateAssemblyVersionAttribute >
1313 <GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
1414 <GenerateAssemblyConfigurationAttribute >false</GenerateAssemblyConfigurationAttribute >
Original file line number Diff line number Diff line change 1010 <AssemblyName >Python.EmbeddingTest</AssemblyName >
1111 <RootNamespace >Python.EmbeddingTest</RootNamespace >
1212 <PackageId >Python.EmbeddingTest</PackageId >
13- <VersionPrefix >2.5.0 </VersionPrefix >
13+ <VersionPrefix >2.5.1 </VersionPrefix >
1414 <GenerateAssemblyVersionAttribute >false</GenerateAssemblyVersionAttribute >
1515 <GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
1616 <GenerateAssemblyConfigurationAttribute >false</GenerateAssemblyConfigurationAttribute >
Original file line number Diff line number Diff line change 88 <RootNamespace >Python.Runtime</RootNamespace >
99 <AssemblyName >Python.Runtime</AssemblyName >
1010 <PackageId >pythonnet</PackageId >
11- <VersionPrefix >2.5.0 </VersionPrefix >
11+ <VersionPrefix >2.5.1 </VersionPrefix >
1212 <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
1313 <GenerateAssemblyInfo >false</GenerateAssemblyInfo >
1414 <Title >Python.NET</Title >
Original file line number Diff line number Diff line change 22Code in this module gets loaded into the main clr module.
33"""
44
5- __version__ = "2.5.0 "
5+ __version__ = "2.5.1 "
66
77
88class clrproperty (object ):
Original file line number Diff line number Diff line change 77 <AssemblyName >Python.Test</AssemblyName >
88 <RootNamespace >Python.Test</RootNamespace >
99 <PackageId >Python.Test</PackageId >
10- <VersionPrefix >2.5.0 </VersionPrefix >
10+ <VersionPrefix >2.5.1 </VersionPrefix >
1111 <OutputPath >bin\</OutputPath >
1212 <AppendTargetFrameworkToOutputPath Condition =" '$(TargetFramework)'=='net40'" >false</AppendTargetFrameworkToOutputPath >
1313 <DocumentationFile Condition =" '$(TargetFramework)'=='net40'" >$(OutputPath)\$(AssemblyName).xml</DocumentationFile >
You can’t perform that action at this time.
0 commit comments