Skip to content

Commit

Permalink
Merge branch 'release/3.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeholder committed Mar 21, 2024
2 parents e13d34a + 492090b commit a2e34b6
Show file tree
Hide file tree
Showing 7 changed files with 1,562 additions and 1,682 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: ci
uses: craftcms/.github/.github/workflows/ci.yml@v3
with:
craft_version: '4'
craft_version: '5'
jobs: '["ecs", "phpstan", "prettier"]'
notify_slack: true
slack_subteam: <!subteam^S01CWPYH9D5>
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Release Notes for Craft Commerce

## 3.0.0 - 2024-03-20

- Added Craft CMS 5 and Craft Commerce 5 compatibility.

## 2.1.0 - 2024-03-20

### Added
- Added Craft CMS 5 and Craft Commerce 5 compatibility.
- Added `craft\commerce\taxjar\events\ModifyRequestEvent`.
- Provided a more precise store location address to the Tax Jar API. ([#13](https://github.com/craftcms/commerce-taxjar/pull/13))
- Fixed a bug where cached tax rates were not being invalidated when line item tax category changed. ([#11](https://github.com/craftcms/commerce-taxjar/issues/11))
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ It replaces Craft Commerce’s built-in tax engine, offloading the work of manag

## Requirements

This plugin requires either:
- Craft Commerce 4.0 or later
- Craft Commerce 5.0 or later.
This plugin requires either Craft Commerce 5.0 or later.

## Installation

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0-RC3|^5.0.0-beta.7",
"craftcms/commerce": "^4.0.0-RC1|^5.0.0-beta.1",
"craftcms/commerce-omnipay": "^4.1.0",
"php": "^8.2.0",
"craftcms/cms": "^5.0.0-beta.10",
"craftcms/commerce": "^5.0.0-beta.1",
"taxjar/taxjar-php": "^1.10.0|^2.0.0"
},
"autoload": {
Expand All @@ -42,7 +41,8 @@
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
"craftcms/plugin-installer": true,
"php-http/discovery": true
}
},
"require-dev": {
Expand Down
Loading

0 comments on commit a2e34b6

Please sign in to comment.