Skip to content

Commit b9cdf1f

Browse files
committed
The Time extensions were extracted into their own library. Remove them from this library and start using the external one. Bump the version number on the library.
1 parent 1d40812 commit b9cdf1f

File tree

3 files changed

+6
-21
lines changed

3 files changed

+6
-21
lines changed

shard.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: csuuid
2-
version: 0.2.1
2+
version: 0.2.2
33

44
authors:
55
- Kirk Haines <[email protected]>
@@ -14,3 +14,6 @@ development_dependencies:
1414
version: ~> 0.14
1515
parse_date:
1616
github: wyhaines/ParseDate.cr
17+
time-ext:
18+
github: wyhaines/time-ext.cr
19+
branch: main

src/csuuid.cr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
require "uuid"
2-
require "./time"
2+
require "time-ext"
33
require "random/isaac"
44
require "crystal/spin_lock"
55

@@ -40,7 +40,7 @@ require "crystal/spin_lock"
4040
# ```
4141
#
4242
struct CSUUID
43-
VERSION = "0.2.1"
43+
VERSION = "0.2.2"
4444

4545
@@mutex = Crystal::SpinLock.new
4646
# @@mutex = Mutex.new(protection: Mutex::Protection::Reentrant)

src/time.cr

-18
This file was deleted.

0 commit comments

Comments
 (0)