Skip to content
This repository has been archived by the owner on Jan 25, 2020. It is now read-only.

Commit

Permalink
bump release
Browse files Browse the repository at this point in the history
small tweak to fix test
  • Loading branch information
plukevdh committed Apr 5, 2016
1 parent 01a0078 commit 8434d98
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/biplane/diff.cr
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module Biplane
private def format_at_indent(string : String, ui : Hash, indent_level : Int32)
indents = Array.new(indent_level, " ").join("")
formatted = (ui[:symbol] as String) + indents + string
formatted = formatted.colorize(ui[:color] as Symbol) if $COLORIZE
formatted = formatted.colorize(ui[:color] as Symbol).to_s if $COLORIZE

formatted
end
Expand Down
2 changes: 1 addition & 1 deletion src/biplane/printer/nested_diff.cr
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ module Biplane::Printer
indents = Array.new(indent_level, " ").join("")

text = (prefix + indents + string)
text = text.colorize(color) if color && $COLORIZE
text = text.colorize(color).to_s if color && $COLORIZE

puts text
end
Expand Down
2 changes: 1 addition & 1 deletion src/biplane/version.cr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Biplane
VERSION = "1.1.4"
VERSION = "1.1.5"
end

0 comments on commit 8434d98

Please sign in to comment.