Skip to content

Commit

Permalink
Client: Release v3.0.5 (#12505)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 234963090902bef459e9491bfb4e39ee3ccb8c55
  • Loading branch information
stephencpope authored and Descartes Labs Build committed Mar 21, 2024
1 parent c64b949 commit 891f410
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ The documentation for the latest release can be found at [https://docs.descartes
Changelog
=========

## [3.0.5] - 2024-03-21

Bugfix only

### General

- The `descarteslabs` client CLI script generated by the installation process was broken. Now it works!

## [3.0.4] - 2024-03-20

A very minor release with some obscure bug fixes.
Expand Down
6 changes: 5 additions & 1 deletion descarteslabs/core/client/scripts/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@
from descarteslabs.client.scripts.cli import cli


if __name__ == "__main__":
def main():
try:
cli()
except Exception as e:
click.echo(f"{e.__class__.__name__}: {e}", err=True)
sys.exit(1)


if __name__ == "__main__":
main()
2 changes: 1 addition & 1 deletion descarteslabs/core/client/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "3.0.4"
__version__ = "3.0.5"

0 comments on commit 891f410

Please sign in to comment.