Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion rsconnect/http_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
Dict[str, "JsonData"],
]

_user_agent = "rsconnect-python/%s" % VERSION
_user_agent = "RSConnectPython/%s" % VERSION


# noinspection PyUnusedLocal,PyUnresolvedReferences
Expand Down
Loading