Skip to content

Commit a78d9f5

Browse files
committed
chore: prep v8.4.0
1 parent cffe5ac commit a78d9f5

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ jobs:
1010
lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- uses: shivammathur/setup-php@v2
1515
with:
16+
# TODO: Upgrade to PHP 8.5 when VCR releases a version compatible with it
1617
php-version: '8.3'
1718
- name: install dependencies
1819
run: make install
@@ -22,10 +23,10 @@ jobs:
2223
runs-on: ubuntu-latest
2324
strategy:
2425
matrix:
25-
# TODO: Add 8.4 when VCR releases a version compatible with it
26+
# TODO: Add 8.4/8.5 when VCR releases a version compatible with it
2627
phpversion: ['8.1', '8.2', '8.3']
2728
steps:
28-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
2930
- uses: shivammathur/setup-php@v2
3031
with:
3132
php-version: ${{ matrix.phpversion }}
@@ -52,9 +53,10 @@ jobs:
5253
if: github.ref == 'refs/heads/master'
5354
runs-on: ubuntu-latest
5455
steps:
55-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v5
5657
- uses: shivammathur/setup-php@v2
5758
with:
59+
# TODO: Upgrade to PHP 8.5 when VCR releases a version compatible with it
5860
php-version: '8.3'
5961
- name: Install Dependencies
6062
run: make install

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CHANGELOG
22

3-
## Next Release
3+
## v8.4.0 (2025-11-24)
44

55
- Adds the following functions:
66
- `embeddable.createSession`

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "easypost/easypost-php",
33
"description": "EasyPost Shipping API Client Library for PHP",
4-
"version": "8.3.0",
4+
"version": "8.4.0",
55
"keywords": [
66
"shipping",
77
"api",

lib/EasyPost/Constant/Constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ abstract class Constants
1111
const BETA_API_VERSION = 'beta';
1212

1313
// Library constants
14-
const LIBRARY_VERSION = '8.3.0';
14+
const LIBRARY_VERSION = '8.4.0';
1515
const SUPPORT_EMAIL = '[email protected]';
1616

1717
// Validation

0 commit comments

Comments
 (0)