Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apivideo/api.video-python-client
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 23046076671e765e5a2c8d78201dee652edb603c
Choose a base ref
..
head repository: apivideo/api.video-python-client
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b67aa892d219b9520f6a9739de86b37866aa2879
Choose a head ref
Showing with 7 additions and 4 deletions.
  1. +3 −0 CHANGELOG.md
  2. +1 −1 apivideo/__init__.py
  3. +1 −1 apivideo/api_client.py
  4. +1 −1 apivideo/configuration.py
  5. +1 −1 setup.py
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All changes to this project will be documented in this file.

## [1.4.6] - 2024-11-04
- Analytics updates (ccv, views, ...)

## [1.4.5] - 2024-10-21
- Add summary feature

2 changes: 1 addition & 1 deletion apivideo/__init__.py
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
"""


__version__ = "1.4.5"
__version__ = "1.4.6"

# import ApiVideoClient
from apivideo.auth_api_client import AuthenticatedApiClient
2 changes: 1 addition & 1 deletion apivideo/api_client.py
Original file line number Diff line number Diff line change
@@ -75,7 +75,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie

self.default_headers['AV-Origin-Client'] = "python:1.4.5"
self.default_headers['AV-Origin-Client'] = "python:1.4.6"

def __enter__(self):
return self
2 changes: 1 addition & 1 deletion apivideo/configuration.py
Original file line number Diff line number Diff line change
@@ -391,7 +391,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 1\n"\
"SDK Package Version: 1.4.5".\
"SDK Package Version: 1.4.6".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "api.video"
VERSION = "1.4.5"
VERSION = "1.4.6"
# To install the library, run the following
#
# python setup.py install