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
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Monite
Copyright (c) 2025 Monite.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name = "monite"

[tool.poetry]
name = "monite"
version = "0.5.1"
version = "0.5.2"
description = ""
readme = "README.md"
authors = []
keywords = []

license = "MIT"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
Expand All @@ -24,7 +24,8 @@ classifiers = [
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
"Typing :: Typed",
"License :: OSI Approved :: MIT License"
]
packages = [
{ include = "monite", from = "src"}
Expand Down
4 changes: 2 additions & 2 deletions src/monite/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ def __init__(

def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"User-Agent": "monite/0.5.1",
"User-Agent": "monite/0.5.2",
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "monite",
"X-Fern-SDK-Version": "0.5.1",
"X-Fern-SDK-Version": "0.5.2",
}
headers["x-monite-version"] = self._monite_version
if self._monite_entity_id is not None:
Expand Down