python-rundeck 1.0.0__tar.gz → 1.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/PKG-INFO +2 -2
  2. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/pyproject.toml +2 -2
  3. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/LICENSE +0 -0
  4. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/README.md +0 -0
  5. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/__init__.py +0 -0
  6. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/base.py +0 -0
  7. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/client.py +0 -0
  8. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/config.py +0 -0
  9. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/const.py +0 -0
  10. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/exceptions.py +0 -0
  11. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/py.typed +0 -0
  12. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/__init__.py +0 -0
  13. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/__init__.py +0 -0
  14. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/adhoc.py +0 -0
  15. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/config_management.py +0 -0
  16. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/executions.py +0 -0
  17. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/features.py +0 -0
  18. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/jobs.py +0 -0
  19. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/key_storage.py +0 -0
  20. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/metrics.py +0 -0
  21. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/plugins.py +0 -0
  22. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/projects.py +0 -0
  23. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/scheduler.py +0 -0
  24. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/scm.py +0 -0
  25. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/system.py +0 -0
  26. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/tokens.py +0 -0
  27. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/users.py +0 -0
  28. {python_rundeck-1.0.0 → python_rundeck-1.0.1}/src/rundeck/v1/objects/webhooks.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-rundeck
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Python client for the Rundeck API (v14-v56).
5
5
  License-Expression: MIT
6
6
  License-File: LICENSE
@@ -8,7 +8,7 @@ Keywords: rundeck,api,client
8
8
  Author: Pascal Seckinger
9
9
  Author-email: pascal.seckinger@protonmail.com
10
10
  Requires-Python: >=3.11
11
- Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Development Status :: 5 - Production/Stable
12
12
  Classifier: Intended Audience :: Developers
13
13
  Classifier: License :: OSI Approved :: MIT License
14
14
  Classifier: Operating System :: OS Independent
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "python-rundeck"
3
- version = "1.0.0"
3
+ version = "1.0.1"
4
4
  description = "Python client for the Rundeck API (v14-v56)."
5
5
  authors = [
6
6
  {name = "Pascal Seckinger",email = "pascal.seckinger@protonmail.com"}
@@ -10,7 +10,7 @@ readme = "README.md"
10
10
  requires-python = ">=3.11"
11
11
  keywords = ["rundeck", "api", "client"]
12
12
  classifiers = [
13
- "Development Status :: 3 - Alpha",
13
+ "Development Status :: 5 - Production/Stable",
14
14
  "Intended Audience :: Developers",
15
15
  "License :: OSI Approved :: MIT License",
16
16
  "Operating System :: OS Independent",
File without changes
File without changes