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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.5
current_version = 0.1.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
year = "2025"
author = "Gonzalo Rafuls"
copyright = f"{year}, {author}"
version = release = "0.0.5"
version = release = "0.1.0"

pygments_style = "trac"
templates_path = ["."]
Expand Down
12 changes: 11 additions & 1 deletion docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ To use the project:

.. code-block:: python

from quads_lib.quads import QuadsApi
from quads_lib import QuadsApi
quads = QuadsApi(username, password, base_url)
quads.login()
hosts = quads.get_hosts()
quads.logout()

Or using a context manager:

.. code-block:: python

from quads_lib import QuadsApi
with QuadsApi(username, password, base_url) as quads:
hosts = quads.get_hosts()
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ ignore = [
"S607", # flake8-bandit start-process-with-partial-path
"E501", # pycodestyle line-too-long
"S105", # Possible hardcoded password
"S106", # Hardcoded password
]
select = [
"B", # flake8-bugbear
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def read(*names, **kwargs):

setup(
name="quads-lib",
version="0.0.5",
version="0.1.0",
license="LGPL-3.0-only",
description="Python client library for interacting with the QUADS API",
long_description="{}\n{}".format(
Expand Down
2 changes: 1 addition & 1 deletion src/quads_lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.5"
__version__ = "0.1.0"

from .quads import QuadsApi

Expand Down
Loading
Loading