diff --git a/.version b/.version index 1cc5f65..867e524 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -1.1.0 \ No newline at end of file +1.2.0 \ No newline at end of file diff --git a/changelog.txt b/changelog.txt index f0eb83b..6e85ced 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,7 +1,49 @@ -- - - - - -regXwild -_ _ _ _ _ +- - - - - - - - - - - - - - - - - - - - - +regXwild - https://github.com/3F/regXwild +- - - - - - - - - - - - - - - - - - - - - +[v1.2] 2020.02.10 + + * NEW: MultiByte support. + Now you can use modules with MultiByte characters. + + For C++ projects it will be automatically selected + according to the actual project configuration. + + For .NET, you need to override related `CharacterSet` property. + + * NEW: .NET Core based projects support through Conari and related: + Including .NET Standard targeting; + + Just install our modern NuGet packages; + https://www.nuget.org/packages/regXwild + + * CHANGED: Modules with MultiByte characters for .NET projects by default. + You can replace this by the changing $(CharacterSet) msbuild property: + ``` + Unicode + ``` + + * CHANGED: Added the following tools to packages for related build processes. + + * tools\gnt.bat - https://github.com/3F/GetNuTool + * tools\hMSBuild.bat - https://github.com/3F/hMSBuild + + * CHANGED: `algo` and `snet` testers can be found inside packages + for each $(Platform)-$(CharacterSet) + + * CHANGED: Conari will no longer be distributed together with regXwild. + https://github.com/3F/Conari + + Please consider to use it separately. Conari nuget packages: + https://www.nuget.org/packages/Conari/ + + (recommended due to caching of 0x29 opcodes and other related optimization) + + * NOTE: Offcial releases can be also found through GitHub Releases: + https://github.com/3F/regXwild/releases + + [v1.1] CHANGED: Updated API: diff --git a/regXwild.nuspec b/regXwild.nuspec index 1db8c46..0f21534 100644 --- a/regXwild.nuspec +++ b/regXwild.nuspec @@ -2,7 +2,7 @@ regXwild - 1.1.0 + 1.2.0 [ regXwild ] Fast advanced wildcards github.com/3F/regXwild LICENSE @@ -103,7 +103,7 @@ ~~~~~~~~ Get it via GetNuTool: =================================== - gnt /p:ngpackages="regXwild/1.1.0" + gnt /p:ngpackages="regXwild/1.2.0" =================================== * https://github.com/3F/GetNuTool diff --git a/regXwild/regXwildAPI.cpp b/regXwild/regXwildAPI.cpp index d478826..53d2ddc 100644 --- a/regXwild/regXwildAPI.cpp +++ b/regXwild/regXwildAPI.cpp @@ -70,7 +70,7 @@ namespace net { namespace r_eg { namespace regXwild REGXWILD_API const TCHAR* versionString() { // Please use '.version' file. It will be automatically updated by vssbe script. - return /*vsSBE*/_T("1.1.0"); //TODO: additional structure etc. of version data. + return /*vsSBE*/_T("1.2.0"); //TODO: additional structure etc. of version data. } }}} \ No newline at end of file