Skip to content

Commit

Permalink
Merge branch 'release/2.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeholder committed Mar 21, 2024
2 parents 63520e8 + bb62872 commit e13d34a
Show file tree
Hide file tree
Showing 9 changed files with 1,046 additions and 772 deletions.
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Bug Report
about: Report an issue or unexpected behavior
labels:
- bug # Linear
- Craft Commerce # Linear
- Craft Commerce → TaxJar # Linear
---

### Description



### Steps to reproduce

1.
2.

### Additional info

- Craft version:
- PHP version:
- Database driver & version:
- Plugins & versions:
21 changes: 21 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Create Release
run-name: Create release for ${{ github.event.client_payload.version }}

on:
repository_dispatch:
types:
- craftcms/new-release

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: ncipollo/release-action@v1
with:
body: ${{ github.event.client_payload.notes }}
makeLatest: ${{ github.event.client_payload.latest }}
name: ${{ github.event.client_payload.version }}
prerelease: ${{ github.event.client_payload.prerelease }}
tag: ${{ github.event.client_payload.tag }}
16 changes: 16 additions & 0 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Add issues to project

on:
issues:
types:
- opened
- transferred

jobs:
add-to-project:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/craftcms/projects/16
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release Notes for Craft Commerce

## 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))

## 2.0.0 - 2022-05-04

### Added
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ It replaces Craft Commerce’s built-in tax engine, offloading the work of manag

## Requirements

This plugin requires Craft Commerce (Pro edition) 4.0 or later.
This plugin requires either:
- Craft Commerce 4.0 or later
- Craft Commerce 5.0 or later.

## Installation

Expand Down
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0-RC3",
"craftcms/commerce": "^4.0.0-RC1",
"taxjar/taxjar-php": "^1.10.0"
"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",
"taxjar/taxjar-php": "^1.10.0|^2.0.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit e13d34a

Please sign in to comment.