diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 4a58e476..f3d739aa 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - `rsconnect list` now properly functions when a stored server has no nickname. +- Fixes the HTTP User-Agent string to use PascalCase formatting. HTTP requests now identify the client as `RSConnectPython/x.y.z` instead of `rsconnect-python/x.y.z`. ### Changed diff --git a/rsconnect/http_support.py b/rsconnect/http_support.py index 27e5900c..e0e97b38 100644 --- a/rsconnect/http_support.py +++ b/rsconnect/http_support.py @@ -31,7 +31,7 @@ Dict[str, "JsonData"], ] -_user_agent = "rsconnect-python/%s" % VERSION +_user_agent = "RSConnectPython/%s" % VERSION # noinspection PyUnusedLocal,PyUnresolvedReferences