Skip to content

Commit

Permalink
Version increase
Browse files Browse the repository at this point in the history
  • Loading branch information
yosiat committed Sep 8, 2018
1 parent acc0695 commit f0e750e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ VALUE iso_ar_iso_datetime_string(const char* value) {
append_region_str(value, &cur, 17, 19);

*cur++ = '.';
if(value[19] == '.' && isdigit(value[20])) {
if (value[19] == '.' && isdigit(value[20])) {
append_region_str(value, &cur, 20, 23);
} else {
*cur++ = '0';
Expand Down
2 changes: 1 addition & 1 deletion lib/panko/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Panko
VERSION = "0.5.2"
VERSION = "0.5.3"
end

0 comments on commit f0e750e

Please sign in to comment.