Skip to content

Commit

Permalink
Public release of the .NET DllExport 1.6.5
Browse files Browse the repository at this point in the history
* FIXED: Possible "The format ... of configuration is not supported."
         Issue #114.

* FIXED: XML meta comments for DllExport Metadata.

* CHANGED: Updated MvsSln 2.4
           Release notes:
           https://github.com/3F/MvsSln/releases/tag/v2.4

* NOTE: To upgrade configured version to v1.6.5:
        ```
            DllExport -action Upgrade -dxp-version 1.6.5
        ```
  • Loading branch information
3F committed Aug 10, 2019
1 parent 7cfd407 commit 4db7142
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.4
1.6.5
2 changes: 1 addition & 1 deletion Metadata/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
[assembly: Guid("E0E525D9-49F8-4641-910F-E9D01821AB15")]

//[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.6.4.*")]
[assembly: AssemblyVersion("1.6.5.*")]
2 changes: 1 addition & 1 deletion MvsSln
2 changes: 1 addition & 1 deletion RGiesecke.DllExport.MSBuild/DllExportVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ namespace RGiesecke.DllExport
// but currently I don't want to change this, because it will be automatically changed if plugin exists (use .version)
internal struct DllExportVersion
{
internal const string Version = "1.6.4";
internal const string Version = "1.6.5";
}
}
2 changes: 1 addition & 1 deletion RGiesecke.DllExport/DllExportVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ namespace RGiesecke.DllExport
// but currently I don't want to change this, because it will be automatically changed if plugin exists (use .version)
internal struct DllExportVersion
{
internal const string Version = "1.6.4";
internal const string Version = "1.6.5";
}
}
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Copyright (c) 2016-2019 Denis Kuzmin < entry.reg@gmail.com > GitHub/3F
[![License](https://img.shields.io/badge/License-MIT-74A5C2.svg)](https://github.com/3F/DllExport/blob/master/LICENSE)
[![coreclr_ILAsm](https://img.shields.io/badge/coreclr_ILAsm-v4.5.1-C8597A.svg)](https://www.nuget.org/packages/ILAsm/)
[![Cecil](https://img.shields.io/badge/Cecil-0.10.4-1182C3.svg)](https://github.com/jbevain/cecil)
[![MvsSln](https://img.shields.io/badge/MvsSln-v2.3.0-865FC5.svg)](https://github.com/3F/MvsSln)
[![MvsSln](https://img.shields.io/badge/MvsSln-v2.4.0-865FC5.svg)](https://github.com/3F/MvsSln)
[![GetNuTool core](https://img.shields.io/badge/GetNuTool-v1.7-93C10B.svg)](https://github.com/3F/GetNuTool)
[![Conari](https://img.shields.io/badge/Conari-v1.3.0-8AA875.svg)](https://github.com/3F/Conari)

Expand Down
4 changes: 2 additions & 2 deletions Wizard/WizardVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ internal struct WizardVersion
{
public static readonly Version number = new Version(S_NUM_REV);

public const string S_NUM = "1.6.4";
public const string S_REV = "29086";
public const string S_NUM = "1.6.5";
public const string S_REV = "4036";
public const string S_REL = "";

public const string S_NUM_REV = S_NUM + "." + S_REV;
Expand Down
16 changes: 16 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
.NET DllExport - https://github.com/3F/DllExport
- - - - - - - - - - - - - - - - - - - - - - - - -

[v1.6.5] 2019.08.10

* FIXED: Possible "The format ... of configuration is not supported."
Issue #114.

* FIXED: XML meta comments for DllExport Metadata.

* CHANGED: Updated MvsSln 2.4
Release notes:
https://github.com/3F/MvsSln/releases/tag/v2.4

* NOTE: To upgrade configured version to v1.6.5:
```
DllExport -action Upgrade -dxp-version 1.6.5
```

[v1.6.4] 2019.07.04

* FIXED: Possible "The process cannot access the file because it is being used by another process"
Expand Down

0 comments on commit 4db7142

Please sign in to comment.