Release version 1.0.6+1

Clarify documentation.
This commit is contained in:
Boris Kolpackov
2022-05-19 14:51:36 +02:00
parent fd685f6f0e
commit c762e56929
2 changed files with 9 additions and 2 deletions

View File

@@ -1,7 +1,14 @@
# libstud-uuid - UUID generation library for C++
A portable, dependency-free, MIT-licensed UUID generation library for C++ that
makes sure the generated IDs are actually unique.
tries to make reasonably sure the generated IDs are unique.
Specifically, the implementation calls platform-specific APIs that were
carefully analyzed for uniqueness guarantees (good source of randomness, time
collision prevention, etc). If an API does not explicitly provide such
guarantees or if such guarantees are only provided for certain UUID versions,
then the implementation will refuse to return such a UUID if a strong
uniqueness was requested.
Typical usage:

View File

@@ -1,7 +1,7 @@
: 1
name: libstud-uuid
project: libstud
version: 1.0.6
version: 1.0.6+1
summary: Portable UUID generation library for C++
license: MIT ; MIT License.
topics: C++, UUID, identification