Skip to content

Commit

Permalink
Praying to the almighty that this includes my fixes this time.
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsusie committed Nov 27, 2020
1 parent 7306069 commit a62fc86
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions High Precision Time Stamps.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Christopher P. Susie</Authors>
<Company>CJM Screws, LLC</Company>
<Version>0.0.5-beta</Version>
<Version>0.0.5.1-beta</Version>
<Description>
This pre-release alpha package provides timestamps in a similar manner to DateTime.Now except it uses the hardware's high precision event timer, where available. Time stamps are more precise and, when retrieved on the same thread within a short time of each other, can be expected to be more accurate relative to each other than those retrieved by DateTime.Now. They may be less accurate in reference to offical UTC time or system time, but, under most circumstances, should remain approximately accurate.

The use-case for this project is when approximately accurate timestamps are needed for purposes of identifying when an event happened, but are also used to measure elapsed time between events that happen on a scale of milliseconds or microseconds.
</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>
This release 0.0.5.0 fixes a misspelled namespace: HpTimesStamps -> HpTimeStamps. This is a breaking change and client code must refactor. Hopefully, there will not be any more breaking changes that require code refactors.
This release 0.0.5.1 fixes a misspelled namespace: HpTimesStamps -> HpTimeStamps. This is a breaking change and client code must refactor. Hopefully, there will not be any more breaking changes that require code refactors.
It also adds a unit test project that focuses on conversions. More tests will be forthcoming.
SourceLink support will be attempted. It may not work correctly on this release but it is a goal.
Also, a dependency to System.Memory Nuget package has been added. I hope to get rid of dynamic array allocations in the Int128 multiplication, division and modulus operations.
</PackageReleaseNotes>
<RepositoryUrl>https://github.com/cpsusie/High-Precision-Time-Stamps</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<PackageTags>Timestamps</PackageTags>
<AssemblyVersion>0.0.5.0</AssemblyVersion>
<FileVersion>0.0.5.0</FileVersion>
<AssemblyVersion>0.0.5.1</AssemblyVersion>
<FileVersion>0.0.5.1</FileVersion>
<Copyright>Copyright (c) 2020 CJM Screws, LLC</Copyright>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
Expand Down

0 comments on commit a62fc86

Please sign in to comment.