Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit96adaaa

Browse files
committed
Bump version to 2.5.1
1 parentb85104b commit96adaaa

File tree

10 files changed

+11
-13
lines changed

10 files changed

+11
-13
lines changed

‎CHANGELOG.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@ project adheres to [Semantic Versioning][].
55

66
This 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

‎setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ def run(self):
629629

630630
setup(
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",

‎src/SharedAssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
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.5.0")]
28+
[assembly:AssemblyVersion("2.5.1")]

‎src/clrmodule/ClrModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static void initclr()
5353
{
5454
#ifUSE_PYTHON_RUNTIME_VERSION
5555
// Has no effect until SNK works. Keep updated anyways.
56-
Version=newVersion("2.5.0"),
56+
Version=newVersion("2.5.1"),
5757
#endif
5858
CultureInfo= CultureInfo.InvariantCulture
5959
};

‎src/clrmodule/clrmodule.15.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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>

‎src/console/Console.15.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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>

‎src/embed_tests/Python.EmbeddingTest.15.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
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>

‎src/runtime/Python.Runtime.15.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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>

‎src/runtime/resources/clr.py

Lines changed: 1 addition & 1 deletion
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.5.0"
5+
__version__="2.5.1"
66

77

88
classclrproperty(object):

‎src/testing/Python.Test.15.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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
<AppendTargetFrameworkToOutputPathCondition="'$(TargetFramework)'=='net40'">false</AppendTargetFrameworkToOutputPath>
1313
<DocumentationFileCondition="'$(TargetFramework)'=='net40'">$(OutputPath)\$(AssemblyName).xml</DocumentationFile>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp