Skip to content

Commit d6d977d

Browse files
authored
Merge pull request #247 from EasyPost/v7.7.0
chore: prepare v7.7.0 for release
2 parents fe17546 + 9614608 commit d6d977d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: set up python
15-
uses: actions/setup-python@v3
15+
uses: actions/setup-python@v4
1616
with:
1717
python-version: "3.11"
1818
- name: Install Dependencies
1919
run: make install
2020
- name: Check format
2121
run: make format-check
2222
run-tests:
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-20.04 # TODO: Python 3.6 doesn't have a binary for 22.04, switch to `latest` once we drop support for Python 3.6
2424
strategy:
2525
matrix:
2626
pythonversion: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
2727
steps:
2828
- uses: actions/checkout@v3
2929
- name: set up python
30-
uses: actions/setup-python@v3
30+
uses: actions/setup-python@v4
3131
with:
3232
python-version: ${{ matrix.pythonversion }}
3333
- name: Install Dependencies

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# CHANGELOG
22

3-
## NEXT RELEASE
3+
## v7.7.0 (2022-12-07)
44

5-
- [ADDED] `create` function for CarrierAccount now supports carrier accounts with custom workflows (e.g. FedEx, UPS)
5+
- Routes requests for creating a carrier account with a custom workflow (eg: FedEx, UPS) to the correct endpoint when using the `create` function
66

77
## v7.6.1 (2022-10-24)
88

easypost/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "7.6.1"
1+
VERSION = "7.7.0"
22

33
numbers = [str(number) for number in VERSION.split(".")]
44
VERSION_INFO = numbers

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
setup(
3434
name="easypost",
35-
version="7.6.1",
35+
version="7.7.0",
3636
description="EasyPost Shipping API Client Library for Python",
3737
author="EasyPost",
3838
author_email="[email protected]",

0 commit comments

Comments
 (0)