Skip to content

Commit

Permalink
v1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
docelic committed Dec 26, 2022
1 parent ab72cab commit e67c113
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: tput
version: 1.0.4
version: 1.0.5

authors:
- Davor Ocelic <[email protected]>
Expand Down
6 changes: 3 additions & 3 deletions src/tput.cr
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ require "./tput/emulator"
# In all of the examples above, spaces exist just for clarity and are not part of actual escape
# sequences. For example, in "ESC [" or " Ps ; Ps ;" there are no actual spaces.
class Tput
VERSION = "1.0.4"
VERSION = "1.0.5"
include Namespace
include JSON::Serializable
include Crystallabs::Helpers::Logging
Expand All @@ -61,10 +61,10 @@ class Tput
DEFAULT_SCREEN_SIZE = Size.new 80, 24 # Opinions vary: 24, 25, 27

@[JSON::Field(ignore: true)]
property input : IO::FileDescriptor
property input : IO

@[JSON::Field(ignore: true)]
property output : IO::FileDescriptor
property output : IO

@[JSON::Field(ignore: true)]
property error : IO::FileDescriptor
Expand Down

0 comments on commit e67c113

Please sign in to comment.