ulid-transform 1.3.0__cp311-cp311-win_amd64.whl → 1.5.2__cp311-cp311-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- __version__ = "1.3.0"
1
+ __version__ = "1.5.2"
2
2
 
3
3
  try:
4
4
  from ._ulid_impl import (
@@ -268,7 +268,8 @@ _DECODE = array.array(
268
268
 
269
269
 
270
270
  def ulid_hex() -> str:
271
- """Generate a ULID in lowercase hex that will work for a UUID.
271
+ """
272
+ Generate a ULID in lowercase hex that will work for a UUID.
272
273
 
273
274
  This ulid should not be used for cryptographically secure
274
275
  operations.
@@ -281,7 +282,8 @@ def ulid_hex() -> str:
281
282
 
282
283
 
283
284
  def ulid_at_time_bytes(timestamp: float) -> bytes:
284
- """Generate an ULID as 16 bytes that will work for a UUID.
285
+ """
286
+ Generate an ULID as 16 bytes that will work for a UUID.
285
287
 
286
288
  uuid.UUID(bytes=ulid_bytes)
287
289
  """
@@ -301,7 +303,8 @@ def ulid_now() -> str:
301
303
 
302
304
 
303
305
  def ulid_at_time(timestamp: float) -> str:
304
- """Generate a ULID.
306
+ """
307
+ Generate a ULID.
305
308
 
306
309
  This ulid should not be used for cryptographically secure
307
310
  operations.