Skip to content

Commit

Permalink
v1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
docelic committed Dec 20, 2023
1 parent 64c8bf8 commit cbea4a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,7 @@ alias Virtual = Nil | Bool | Int32 |
being replaced with `Enumerable(Int32)` due to a bug in Crystal
(https://github.com/crystal-lang/crystal/issues/14047).

Another, related consideration is related to matching fields that contain these enumerable
types.
Another, related consideration is related to matching fields that contain these enumerable types:

Some enumerables change internal state when they are used, so in the matching function accepting
`Enumerable` data types they are `#dup`-ed before use, to make sure the original objects
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: virtualtime
version: 1.1.4
version: 1.1.5

authors:
- Davor Ocelic <docelic@crystallabs.io>
Expand Down
2 changes: 1 addition & 1 deletion src/virtualtime.cr
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ end
class VirtualTime
VERSION_MAJOR = 1
VERSION_MINOR = 1
VERSION_REVISION = 4
VERSION_REVISION = 5
VERSION = [VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION].join '.'

include Comparable(Time)
Expand Down

0 comments on commit cbea4a7

Please sign in to comment.