Skip to content

Commit 0b98cd9

Browse files
committed
release 1.0.24
1 parent dac666d commit 0b98cd9

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.24 (2025-04-01)
2+
3+
* Fix vendor and purchases preferences xml reader (#626). Thanks @katzenj
4+
* added pdf method to refund_receipt.rb (#617). Thanks @nicho1991
5+
16
## 1.0.23 (2024-02-12)
27

38
Use Ruby try() to gracefully handle no method errors when parsing exceptions

lib/quickbooks/service/change_service.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Quickbooks
22
module Service
33
class ChangeService < BaseService
44

5-
def url_for_query(query = nil, start_position = 1, max_results = 20)
5+
def url_for_query(query = nil, start_position = 1, max_results = 20, options = {})
66
q = entity
77
q = "#{q}&#{query}" if query.present?
88

lib/quickbooks/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Quickbooks
22

3-
VERSION = "1.0.23"
3+
VERSION = "1.0.24"
44

55
end

0 commit comments

Comments
 (0)