- Notifications
You must be signed in to change notification settings - Fork752
Bumpversion#398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Bumpversion#398
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[bumpversion] | ||
current_version = 2.3.0.dev1 | ||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))? | ||
serialize = | ||
{major}.{minor}.{patch}.{release}{dev} | ||
{major}.{minor}.{patch} | ||
[bumpversion:part:release] | ||
optional_value = dummy | ||
values = | ||
dev | ||
dummy | ||
[bumpversion:part:dev] | ||
[bumpversion:file:setup.py] | ||
[bumpversion:file:conda.recipe/meta.yaml] | ||
[bumpversion:file:src/runtime/resources/clr.py] | ||
[bumpversion:file:src/SharedAssemblyInfo.cs] | ||
serialize = | ||
{major}.{minor}.{patch} | ||
[bumpversion:file:src/clrmodule/ClrModule.cs] | ||
serialize = | ||
{major}.{minor}.{patch} | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package: | ||
name: pythonnet | ||
version:"2.3.0.dev1" | ||
build: | ||
skip: True # [not win] | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using System.Reflection; | ||
using System.Resources; | ||
using System.Runtime.InteropServices; | ||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("pythonnet")] | ||
[assembly: AssemblyProduct("Python for .NET")] | ||
[assembly: AssemblyCopyright("Copyright (c) 2006-2017 the contributors of the 'Python for .NET' project")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
[assembly: NeutralResourcesLanguage("")] | ||
[assembly: CLSCompliant(true)] | ||
// Setting ComVisible to false makes the types in this assembly not visible | ||
// to COM components. If you need to access a type in this assembly from | ||
// COM, set the ComVisible attribute to true on that type. | ||
[assembly: ComVisible(false)] | ||
// Version Information. Keeping it simple. May need to revisit for Nuget | ||
// See: https://codingforsmarties.wordpress.com/2016/01/21/how-to-version-assemblies-destined-for-nuget/ | ||
// AssemblyVersion can only be numeric | ||
[assembly: AssemblyVersion("2.3.0")] |
This file was deleted.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using System.Reflection; | ||
using System.Runtime.InteropServices; | ||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("clrmodule")] | ||
[assembly: AssemblyDescription("")] | ||
// The following GUID is for the ID of the typelib if this project is exposed to COM | ||
[assembly: Guid("ae10d6a4-55c2-482f-9716-9988e6c169e3")] |
This file was deleted.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using System.Reflection; | ||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("Python Console")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyDefaultAlias("python.exe")] |
This file was deleted.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("Python for .NET")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyDefaultAlias("Python.Runtime.dll")] | ||
[assembly: InternalsVisibleTo("Python.EmbeddingTest")] |