Skip to content

Commit 9ba56bf

Browse files
committed
Update copyright notice and use Python.NET everywhere
1 parent b98e674 commit 9ba56bf

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22

3-
All notable changes to Python for .NET will be documented in this file.
4-
This project adheres to [Semantic Versioning][].
3+
All notable changes to Python.NET will be documented in this file. This
4+
project adheres to [Semantic Versioning][].
55

66
This document follows the conventions laid out in [Keep a CHANGELOG][].
77

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2006-2019 the contributors of the "Python for .NET" project
3+
Copyright (c) 2006-2020 the contributors of the Python.NET project
44

55
Permission is hereby granted, free of charge, to any person obtaining a
66
copy of this software and associated documentation files (the "Software"),

README.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pythonnet - Python for .NET
1+
pythonnet - Python.NET
22
===========================
33

44
|Join the chat at https://gitter.im/pythonnet/pythonnet|
@@ -8,7 +8,7 @@ pythonnet - Python for .NET
88
|license shield| |pypi package version| |conda-forge version| |python supported shield|
99
|stackexchange shield|
1010

11-
Python for .NET is a package that gives Python programmers nearly
11+
Python.NET is a package that gives Python programmers nearly
1212
seamless integration with the .NET Common Language Runtime (CLR) and
1313
provides a powerful application scripting tool for .NET developers. It
1414
allows Python code to interact with the CLR, and may also be used to
@@ -17,8 +17,7 @@ embed Python into a .NET application.
1717
Calling .NET code from Python
1818
-----------------------------
1919

20-
Python for .NET allows CLR namespaces to be treated essentially as
21-
Python packages.
20+
Python.NET allows CLR namespaces to be treated essentially as Python packages.
2221

2322
.. code-block::
2423

demo/wordpad.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def InitializeComponent(self):
382382
self.label1.Size = System.Drawing.Size(296, 140)
383383
self.label1.TabIndex = 2
384384
self.label1.Text = "Python Wordpad - an example winforms " \
385-
"application using Python for .NET"
385+
"application using Python.NET"
386386

387387
self.AutoScaleBaseSize = System.Drawing.Size(5, 13)
388388
self.ClientSize = System.Drawing.Size(300, 150)

src/SharedAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// associated with an assembly.
99
[assembly: AssemblyConfiguration("")]
1010
[assembly: AssemblyCompany("pythonnet")]
11-
[assembly: AssemblyProduct("Python for .NET")]
12-
[assembly: AssemblyCopyright("Copyright (c) 2006-2019 the contributors of the 'Python for .NET' project")]
11+
[assembly: AssemblyProduct("Python.NET")]
12+
[assembly: AssemblyCopyright("Copyright (c) 2006-2020 the contributors of the Python.NET project")]
1313
[assembly: AssemblyTrademark("")]
1414

1515
[assembly: AssemblyCulture("")]

src/runtime/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// General Information about an assembly is controlled through the following
55
// set of attributes. Change these attribute values to modify the information
66
// associated with an assembly.
7-
[assembly: AssemblyTitle("Python for .NET")]
7+
[assembly: AssemblyTitle("Python.NET")]
88
[assembly: AssemblyDescription("")]
99
[assembly: AssemblyDefaultAlias("Python.Runtime.dll")]
1010

src/runtime/Python.Runtime.15.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<VersionPrefix>2.4.1</VersionPrefix>
1212
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1313
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
14-
<Title>Python for .NET</Title>
15-
<Copyright>Copyright (c) 2006-2019 the contributors of the 'Python for .NET' project</Copyright>
14+
<Title>Python.NET</Title>
15+
<Copyright>Copyright (c) 2006-2020 the contributors of the Python.NET project</Copyright>
1616
<Description>Python and CLR (.NET and Mono) cross-platform language interop</Description>
1717
<Authors>pythonnet</Authors>
1818
<PackageLicenseUrl>https://github.com/pythonnet/pythonnet/blob/master/LICENSE</PackageLicenseUrl>

0 commit comments

Comments
 (0)