This repository was archived by the owner on Jul 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 10 files changed +17
-9
lines changed
Expand file tree Collapse file tree 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][].
55
66This document follows the conventions laid out in [ Keep a CHANGELOG] [ ] .
77
8+ ## [ unreleased] [ ]
9+
10+ ### Added
11+
12+ ### Changed
13+
14+ ### Fixed
15+
816## [ 2.4.0] [ ]
917
1018### Added
Original file line number Diff line number Diff line change @@ -622,7 +622,7 @@ def run(self):
622622
623623setup (
624624 name = "pythonnet" ,
625- version = "2.4.0 " ,
625+ version = "2.4.1-dev " ,
626626 description = ".Net and Mono integration for Python" ,
627627 url = "https://pythonnet.github.io/" ,
628628 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.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()
5353 {
5454#if USE_PYTHON_RUNTIME_VERSION
5555 // Has no effect until SNK works. Keep updated anyways.
56- Version = new Version ( "2.4.0 " ) ,
56+ Version = new Version ( "2.4.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.4.0 </VersionPrefix >
12+ <VersionPrefix >2.4.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.4.0 </VersionPrefix >
11+ <VersionPrefix >2.4.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.4.0 </VersionPrefix >
13+ <VersionPrefix >2.4.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 >Python.Runtime</PackageId >
11- <VersionPrefix >2.4.0 </VersionPrefix >
11+ <VersionPrefix >2.4.1 </VersionPrefix >
1212 <GenerateAssemblyVersionAttribute >false</GenerateAssemblyVersionAttribute >
1313 <GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
1414 <GenerateAssemblyConfigurationAttribute >false</GenerateAssemblyConfigurationAttribute >
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.4.0 "
5+ __version__ = "2.4.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.4.0 </VersionPrefix >
10+ <VersionPrefix >2.4.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