Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump to 2.1.1 #1197

Merged
merged 3 commits into from
Apr 3, 2024
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
12 changes: 6 additions & 6 deletions .github/workflows/build.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ jobs:
}
EOT

- run: docker-compose -f docker-compose-prod.yml up -d
- run: docker compose -f docker-compose-prod.yml up -d

# Install dependencies
- run: npm ci
Expand Down Expand Up @@ -364,9 +364,9 @@ jobs:
# name: cypress-videos
# path: cypress/videos

- name: Dump docker-compose logs
- name: Dump docker compose logs
if: always()
run: docker-compose logs > logs/stack.log
run: docker compose logs > logs/stack.log

- name: Docker Compose Logs
if: always()
Expand Down Expand Up @@ -448,7 +448,7 @@ jobs:
}
EOT

- run: docker-compose -f docker-compose-prod.yml up -d
- run: docker compose -f docker-compose-prod.yml up -d

# Install dependencies
- run: npm ci
Expand Down Expand Up @@ -483,9 +483,9 @@ jobs:
cd lib/python
python -m pytest -m integration

- name: Dump docker-compose logs
- name: Dump docker compose logs
if: always()
run: docker-compose logs > logs/stack.log
run: docker compose logs > logs/stack.log

- name: Docker Compose Logs
if: always()
Expand Down
3 changes: 1 addition & 2 deletions lib/python/src/bailo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
"""
from __future__ import annotations

# Package Version (2.1.0)
__version__ = "2.1.0"
__version__ = "2.1.1"

from bailo.core.agent import Agent, PkiAgent, TokenAgent
from bailo.core.client import Client
Expand Down
Loading