Skip to content

Commit

Permalink
Merge pull request #247 from EasyPost/v7.7.0
Browse files Browse the repository at this point in the history
chore: prepare v7.7.0 for release
  • Loading branch information
Justintime50 authored Dec 7, 2022
2 parents fe17546 + 9614608 commit d6d977d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: set up python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Dependencies
run: make install
- name: Check format
run: make format-check
run-tests:
runs-on: ubuntu-latest
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
strategy:
matrix:
pythonversion: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: set up python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.pythonversion }}
- name: Install Dependencies
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# CHANGELOG

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion easypost/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "7.6.1"
VERSION = "7.7.0"

numbers = [str(number) for number in VERSION.split(".")]
VERSION_INFO = numbers
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

setup(
name="easypost",
version="7.6.1",
version="7.7.0",
description="EasyPost Shipping API Client Library for Python",
author="EasyPost",
author_email="[email protected]",
Expand Down

0 comments on commit d6d977d

Please sign in to comment.