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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@
> As of v1.4.0, release candidates will be published in an effort to get new features out faster while still allowing
> time for full QA testing before moving the release candidate to a full release.

## v2.2.3 [2025-08-06]

__What's New:__

* None

__Enhancements:__

* None

__Bug Fixes:__

* None

__Dependencies:__

* None

__Other:__

* Switched to absolute imports in `cli_interface` for packaging purposes.

## v2.2.2 [2025-07-25]

__What's New:__
Expand Down
2 changes: 1 addition & 1 deletion src/pybritive/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.2.2'
__version__ = '2.2.3'
30 changes: 15 additions & 15 deletions src/pybritive/cli_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@

import click

from .commands.api import api as command_api
from .commands.aws import aws as group_aws
from .commands.cache import cache as group_cache
from .commands.checkin import checkin as command_checkin
from .commands.checkout import checkout as command_checkout
from .commands.clear import clear as group_clear
from .commands.configure import configure as group_configure
from .commands.login import login as command_login
from .commands.logout import logout as command_logout
from .commands.ls import ls as group_ls
from .commands.request import request as group_request
from .commands.secret import secret as group_secret
from .commands.ssh import ssh as group_ssh
from .commands.user import user as command_user
from .options.britive_options import britive_options
from pybritive.commands.api import api as command_api
from pybritive.commands.aws import aws as group_aws
from pybritive.commands.cache import cache as group_cache
from pybritive.commands.checkin import checkin as command_checkin
from pybritive.commands.checkout import checkout as command_checkout
from pybritive.commands.clear import clear as group_clear
from pybritive.commands.configure import configure as group_configure
from pybritive.commands.login import login as command_login
from pybritive.commands.logout import logout as command_logout
from pybritive.commands.ls import ls as group_ls
from pybritive.commands.request import request as group_request
from pybritive.commands.secret import secret as group_secret
from pybritive.commands.ssh import ssh as group_ssh
from pybritive.commands.user import user as command_user
from pybritive.options.britive_options import britive_options


def safe_cli():
Expand Down