Skip to content

Releases: tompazourek/Rationals

2.3.0

19 Nov 10:58
Compare
Choose a tag to compare

What's Changed

  • Libraries updated
  • Added net8.0 target, building using .NET 8 SDK

Full Changelog: 2.2.0...2.3.0

Additional targets, README inside package

14 Oct 12:04
Compare
Choose a tag to compare

What's Changed

  • Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.0 by @dependabot in #53
  • Bump coverlet.msbuild from 3.2.0 to 6.0.0 by @dependabot in #54
  • Bump Microsoft.NET.Test.Sdk from 17.6.0 to 17.6.1 by @dependabot in #55
  • Bump Microsoft.NET.Test.Sdk from 17.6.1 to 17.6.2 by @dependabot in #56
  • Bump Microsoft.NET.Test.Sdk from 17.6.2 to 17.6.3 by @dependabot in #57
  • Bump xunit from 2.4.2 to 2.5.0 by @dependabot in #58
  • Bump xunit.runner.visualstudio from 2.4.5 to 2.5.0 by @dependabot in #59
  • Bump Microsoft.NET.Test.Sdk from 17.6.3 to 17.7.0 by @dependabot in #61
  • Bump Microsoft.NET.Test.Sdk from 17.7.0 to 17.7.1 by @dependabot in #62
  • Bump Microsoft.NET.Test.Sdk from 17.7.1 to 17.7.2 by @dependabot in #63
  • Bump xunit.runner.visualstudio from 2.5.0 to 2.5.1 by @dependabot in #65
  • Bump xunit from 2.5.0 to 2.5.1 by @dependabot in #64
  • Bump xunit.runner.visualstudio from 2.5.1 to 2.5.3 by @dependabot in #67
  • Bump xunit from 2.5.1 to 2.5.2 by @dependabot in #66
  • Add README.md to NuGet package
  • Add netstandard2.0 and net6.0 targets

Full Changelog: 2.1.0...2.2.0

Parsing improvements

27 Mar 08:35
6a98674
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.0.0...2.1.0

Changed NaN semantics

21 Aug 07:10
0820daa
Compare
Choose a tag to compare
  • The default 0/0 struct value is now NaN. The NaN semantics of Rational is now closer to that of Double (see #24, #26, thanks @dmytro-sheyko).

Incorrect comparison bugfix

06 Jul 10:21
16a47f6
Compare
Choose a tag to compare

Fixes #22: Comparison when one of the denominators is negative and both numbers are positive. (thanks @dmytro-sheyko)

Strongly named assembly, PDBs with SourceLink

28 Dec 17:45
0c9c1d9
Compare
Choose a tag to compare
  • Assembly now has a strongly named signature (#21, thanks to @jakubmisek)
  • There are now PDBs with SourceLink.
  • The AssemblyVersion is now 1.0.0.0 (contains only the major). If you reference multiple different versions of the library in a single app, you might need to set up a binding redirect to 1.0.0.0.

Fixed computation of magnitude

15 Jan 18:41
Compare
Choose a tag to compare
  • Fixed bug in the magnitude computation. (#20, thanks to @0jpq0)

Fixed wrong decimal conversion when numerator and denominator is negative

15 Sep 11:28
Compare
Choose a tag to compare
  • Fixed wrong decimal conversion when numerator and denominator is negative (#18, thanks to @iiwaasnet)

Added XML documentation

18 Nov 12:27
Compare
Choose a tag to compare

More operations

11 Nov 14:59
Compare
Choose a tag to compare
  • Merged PR #13.
  • internal refactorings.
  • new Abs, Log, Root, RationalRoot operations
  • now targetting .NET Standard 1.4, .NET Standard 2.0, .NET 4.6 and .NET 4.7