Skip to content

Commit 52f1ec2

Browse files
authored
Merge pull request #2 from XeroAPI/sid-development
update with version 2.1.6 of OpenAPI spec
2 parents cc6b476 + 1ca622e commit 52f1ec2

File tree

136 files changed

+1500
-661
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+1500
-661
lines changed

bin/post-generation-hook.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
SCRIPT_DIR=$(dirname "$0")
44
PROJECT_ROOT=$(realpath "${SCRIPT_DIR}/..") # expects script in bin/
5-
PATH=$PATH:${PROJECT_ROOT}/venv/bin # expects python environment in venv/
5+
PATH=${PROJECT_ROOT}/venv/bin:$PATH # expects python environment in venv/
66
command -v black >/dev/null 2>&1 || { echo >&2 "'black' required, but not found. Please read 'Local installation' section in ${PROJECT_ROOT}/CONTRIBUTING.md file. Aborting."; exit 1; }
77
command -v flake8 >/dev/null 2>&1 || { echo >&2 "'flake8' required, but not found. Please read 'Local installation' section in ${PROJECT_ROOT}/CONTRIBUTING.md file. Aborting."; exit 1; }
88
cd "${PROJECT_ROOT}" && black xero_python && flake8 xero_python

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ def read_file(filename):
4848
keywords="xero python sdk API oAuth",
4949
name="xero_python",
5050
packages=find_packages(include=["xero_python", "xero_python.*"]),
51-
version="0.2.1",
51+
version="0.2.2",
5252
)

xero_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = """Xero Developer API"""
44
__email__ = "[email protected]"
5-
__version__ = "0.2.1"
5+
__version__ = "0.2.2"

xero_python/accounting/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
99
10-
OpenAPI spec version: 2.1.2
10+
OpenAPI spec version: 2.1.6
1111
1212
Generated by: https://openapi-generator.tech
1313
"""

0 commit comments

Comments
 (0)