Skip to content

Commit

Permalink
Merge pull request #1874 from Shopify/bp/bump-version
Browse files Browse the repository at this point in the history
Bump version patch
  • Loading branch information
bahar-p authored Dec 17, 2024
2 parents c3ac0e0 + 60701f8 commit 94e02d7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Liquid Change Log

## 5.6.0 (unreleased)

### Fixes

* Fix Tokenizer to handle null source value (#1873) [Bahar Pourazar]


## 5.5.0 2024-03-21

Please reference the GitHub release for more information.
Expand Down
2 changes: 1 addition & 1 deletion lib/liquid/tokenizer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Tokenizer
attr_reader :line_number, :for_liquid_tag

def initialize(source, line_numbers = false, line_number: nil, for_liquid_tag: false)
@source = source.to_s
@source = source.to_s.to_str
@line_number = line_number || (line_numbers ? 1 : nil)
@for_liquid_tag = for_liquid_tag
@offset = 0
Expand Down
2 changes: 1 addition & 1 deletion lib/liquid/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# frozen_string_literal: true

module Liquid
VERSION = "5.6.0.rc2"
VERSION = "5.6.0.rc3"
end

0 comments on commit 94e02d7

Please sign in to comment.