Skip to content

Commit

Permalink
Release.
Browse files Browse the repository at this point in the history
  • Loading branch information
hrumhurum committed Nov 4, 2019
1 parent ed1a53d commit abd71bf
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Documentation/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Gapotchenko.FX 2019.3

This version is currently in beta.
Release date: November 4, 2019

- Added support for .NET Core 3.0 target framework
- Introduced `Sequential` and `DebuggableParallel` primitives in `Gapotchenko.FX.Threading` module.
Expand All @@ -15,7 +15,7 @@ Both primitives constitute drop-in replacements for `System.Threading.Tasks.Para
- Implemented polyfills to the future for `WaitForExit(CancellationToken)` and `WaitForExit(int, CancellationToken)` methods of `System.Diagnostics.Process` type
- Implemented polyfill for `SwitchExpressionException`
- `Empty.Task` is not suggested by the code editor when it is natively provided by the host platform
- Fixed issue with ambiguous match of `Append` and `Prepend` polyfills for `IEnumerable<T>` type in some target frameworks
- Fixed issue with ambiguous match of `Append` and `Prepend` polyfills for `IEnumerable<T>` type for some target frameworks
- Fixed issue with binding redirects handling in `Gapotchenko.FX.Reflection.Loader` module that could lead to `StackOverflowException` under specific conditions

## Gapotchenko.FX 2019.2
Expand Down
10 changes: 5 additions & 5 deletions Source/Mastering/AssemblyMetadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
//

#if !DISABLE_ASSEMBLY_VERSION_ATTRIBUTE
[assembly: AssemblyVersion("2019.3.5.16010")]
[assembly: AssemblyVersion("2019.3.7.16010")]
#endif
[assembly: AssemblyFileVersion("2019.3.5.16010")]
[assembly: AssemblyInformationalVersion("2019.3.5 (Beta build 2019.3.5.16010)")]
[assembly: AssemblyFileVersion("2019.3.7.16010")]
[assembly: AssemblyInformationalVersion("2019.3.7 (Release build 2019.3.7.16010)")]

#endif

Expand All @@ -34,8 +34,8 @@ static partial class AssemblyMetadata
{
public const string ProductName = "Gapotchenko.FX";
public const string CompanyName = "Gapotchenko";
public const string InformationalVersion = "2019.3.5 (Beta build 2019.3.5.16010)";
public const string DisplayVersion = "2019.3.5";
public const string InformationalVersion = "2019.3.7 (Release build 2019.3.7.16010)";
public const string DisplayVersion = "2019.3.7";
public const string DisplayVersion2F = "2019.3";
}
#endif
Expand Down
6 changes: 3 additions & 3 deletions Source/Mastering/Metadata.targets
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

<!-- Assembly Information -->
<PropertyGroup>
<AssemblyVersion>2019.3.5.16010</AssemblyVersion>
<FileVersion>2019.3.5.16010</FileVersion>
<InformationalVersion>2019.3.5 (Beta build 2019.3.5.16010)</InformationalVersion>
<AssemblyVersion>2019.3.7.16010</AssemblyVersion>
<FileVersion>2019.3.7.16010</FileVersion>
<InformationalVersion>2019.3.7 (Release build 2019.3.7.16010)</InformationalVersion>
</PropertyGroup>

<!-- =================================================================== -->
Expand Down
2 changes: 1 addition & 1 deletion Source/Mastering/NuGet.targets
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<!-- NuGet Specification -->
<PropertyGroup>
<Version>2019.3.5-beta</Version>
<Version>2019.3.7</Version>
<Authors>Gapotchenko</Authors>
<PackageTags>framework platform polyfill rad</PackageTags>
<PackageIcon>PackageIcon.png</PackageIcon>
Expand Down

0 comments on commit abd71bf

Please sign in to comment.