Skip to content
Open
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
10 changes: 10 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,19 @@
History
=======

0.2.0 (2025-06-23)
-------------------

* Allow overriding the entire cap_app_name of a one-click app (#14)
* BREAKING: Drop namespace parameter for one-click app (#14)
* Auto-assign tag when deploying one-click app (#14)
* Override one-click app tag on deploy_one_click_app & update_app (#20)
* Add projects support (#18)

0.1.24 (2024-12-16)
-------------------

* Support "command" in service_update_override for one-click apps (#13)
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change made it into 0.1.24 but was missed from the changelog. Probably not a big deal.

* Fix & test update from novel kwargs (#12)
* update method lets you set httpAuth (#11)
* `update()` now handles persistent directories that use hostPath (#7)
Expand Down
2 changes: 1 addition & 1 deletion caprover_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """Akash Agarwal"""
__email__ = 'agwl.akash@gmail.com'
__version__ = '0.1.24'
__version__ = '0.2.0'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.24
current_version = 0.2.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/ak4zh/caprover-api',
version='0.1.24',
version='0.2.0',
zip_safe=False,
)