From 4096155d6cf1d4c1ddaa2be0df56d42f9deb4976 Mon Sep 17 00:00:00 2001 From: Jay Kaiser Date: Tue, 15 Oct 2024 16:18:50 -0500 Subject: [PATCH] Update metadata files before release. (#35) --- CHANGELOG.md | 14 ++++++++++++++ setup.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b74c0ad..e54770f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# edfi_api_client v0.2.2 +## New Features +- Access resource `/keyChanges` endpoint using optional `get_key_changes` flag in `EdFiResource`. +- `EdFiClient.get_token_info()` returns the JSON payload of the `/oauth/token_info` endpoint for the existing connection's access-token. + +## Fixes +- Fix authentication logic and require `instance_code` be passed when authenticating to `instance_year_specific` ODSes. + + +# edfi_api_client v0.2.1 +## Fixes +- Make `api_mode` a fully-optional argument in `EdFiClient` (necessary for v7 ODSes). + + # edfi_api_client v0.2.0 ## New Features - `EdFiClient.get_swagger()` now returns an EdFiSwagger class that parses OpenAPI Swagger specification. diff --git a/setup.py b/setup.py index 1881123..c73a84c 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setuptools.setup( name='edfi_api_client', - version='0.2.1', + version='0.2.2', description='Ed-Fi API client and tools', license_files=['LICENSE'], url='https://github.com/edanalytics/edfi_api_client',