diff options
author | Jared Norman <jared@super.gd> | 2020-02-03 21:20:23 -0800 |
---|---|---|
committer | Jared Norman <jared@super.gd> | 2020-02-03 21:20:23 -0800 |
commit | fdc34a3f75fc9ce8f95ed5e75158faa1e0213631 (patch) | |
tree | 9bf65b8ff4f50d845c9555164e0e49840ca16bfd | |
parent | 218f64bdf4d65d6f1bd6ccca160171426159844a (diff) |
v0.17.0v0.17.0
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | lib/super_good/solidus_taxjar/version.rb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a3036b4..92e284f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## master +## v0.17.0 + - Added `SuperGood::SolidusTaxJar.custom_order_params` to allow for custom overrides to the parameters sent to TaxJar when calculating order taxes. For example, if you needed to send a custom nexus address you could do: ```ruby SuperGood::SolidusTaxJar.custom_order_params = ->(order) { diff --git a/lib/super_good/solidus_taxjar/version.rb b/lib/super_good/solidus_taxjar/version.rb index 5990848..3625bc4 100644 --- a/lib/super_good/solidus_taxjar/version.rb +++ b/lib/super_good/solidus_taxjar/version.rb @@ -1,5 +1,5 @@ module SuperGood module SolidusTaxJar - VERSION = "0.16.0" + VERSION = "0.17.0" end end |