Skip to content

Commit

Permalink
Public Beta3 release of the .NET DllExport 1.7:
Browse files Browse the repository at this point in the history
* FIXED: Mismatch of the name of the exported function with the specified value.
         Issue #129.

* FIXED: Unchangeable cdecl convention. Part of Issue #129.

* FIXED: Fixed possible duplication of `DllExportSysObjRebase` during setup.

* NEW: Implemented "Single + Double Inf/-Inf token patching" option.
       Related Issue #128.

* KNOWN: You can finally get another System.Object in modified assembly:
         #90 (comment)

* NOTE: Please don't use beta releases in production!

* NOTE: Please report about something here: https://github.com/3F/DllExport/issues
  • Loading branch information
3F committed Dec 15, 2019
1 parent c6598f6 commit 46e440d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .release.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
beta2
beta3
2 changes: 1 addition & 1 deletion Wizard/WizardVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ internal struct WizardVersion

public const string S_NUM = "1.7.0";
public const string S_REV = "0";
public const string S_REL = "beta";
public const string S_REL = "beta3";

public const string S_NUM_REV = S_NUM + "." + S_REV;

Expand Down
20 changes: 20 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
.NET DllExport - https://github.com/3F/DllExport
- - - - - - - - - - - - - - - - - - - - - - - - -

[v1.7-beta3] 2019.12.15

* FIXED: Mismatch of the name of the exported function with the specified value.
Issue #129.

* FIXED: Unchangeable cdecl convention. Part of Issue #129.

* FIXED: Fixed possible duplication of `DllExportSysObjRebase` during setup.

* NEW: Implemented "Single + Double Inf/-Inf token patching" option.
Related Issue #128.

* KNOWN: You can finally get another System.Object in modified assembly:
https://github.com/3F/DllExport/issues/90#issuecomment-546637702

* NOTE: Please don't use beta releases in production!

* NOTE: Please report about something here: https://github.com/3F/DllExport/issues


[v1.7-beta2] 2019.12.14

* FIXED: Fixed possible "Invalid memory access" (JNA/Java). Issue #125.
Expand Down

0 comments on commit 46e440d

Please sign in to comment.