Skip to content

Commit

Permalink
Merge pull request #401 from rapyuta-robotics/main
Browse files Browse the repository at this point in the history
chore: sync main to devel
  • Loading branch information
ankitrgadiya authored Dec 11, 2024
2 parents 2a68b2d + 66dc30e commit f7be4f7
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4

# We are pinning uv to lower version to workaround the existing
# bugs in setuptools build system. We can unpin onces the issue
# is resolved in upstream repos.
# Bug: https://github.com/pypa/setuptools/issues/4759
- name: Install uv
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v4
with:
version: '0.4.22'

- name: Publish to pypi
run: |
Expand Down
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
# [9.5.0](https://github.com/rapyuta-robotics/rapyuta-io-cli/compare/v9.4.0...v9.5.0) (2024-12-11)


### Features

* **apply:** add support for ansible filters in Jinja2 ([#394](https://github.com/rapyuta-robotics/rapyuta-io-cli/issues/394)) ([d590490](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/d59049091011d88ec715f302701e425218ba4d9c)), closes [AB#39151](https://github.com/AB/issues/39151)
* **deployment:** adds an option to block paramsync until ready ([387181c](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/387181cab56c7e5f9e1cf2b535245810cc597515))
* **device:** add option to exec commands asynchronously ([#365](https://github.com/rapyuta-robotics/rapyuta-io-cli/issues/365)) ([c6bea52](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/c6bea52209881827ceea6dcd084aa6677f1e014d)), closes [AB#16668](https://github.com/AB/issues/16668)
* **device:** handles failed hwil devices during apply and delete ([94bb48e](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/94bb48e54da70cbd767bd500104f957f429c81f7))

# [9.5.0](https://github.com/rapyuta-robotics/rapyuta-io-cli/compare/v9.4.0...v9.5.0) (2024-12-11)


### Features

* **apply:** add support for ansible filters in Jinja2 ([#394](https://github.com/rapyuta-robotics/rapyuta-io-cli/issues/394)) ([d590490](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/d59049091011d88ec715f302701e425218ba4d9c)), closes [AB#39151](https://github.com/AB/issues/39151)
* **deployment:** adds an option to block paramsync until ready ([387181c](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/387181cab56c7e5f9e1cf2b535245810cc597515))
* **device:** add option to exec commands asynchronously ([#365](https://github.com/rapyuta-robotics/rapyuta-io-cli/issues/365)) ([c6bea52](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/c6bea52209881827ceea6dcd084aa6677f1e014d)), closes [AB#16668](https://github.com/AB/issues/16668)
* **device:** handles failed hwil devices during apply and delete ([94bb48e](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/94bb48e54da70cbd767bd500104f957f429c81f7))

# [9.5.0](https://github.com/rapyuta-robotics/rapyuta-io-cli/compare/v9.4.0...v9.5.0) (2024-12-11)


### Features

* **apply:** add support for ansible filters in Jinja2 ([#394](https://github.com/rapyuta-robotics/rapyuta-io-cli/issues/394)) ([d590490](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/d59049091011d88ec715f302701e425218ba4d9c)), closes [AB#39151](https://github.com/AB/issues/39151)
* **deployment:** adds an option to block paramsync until ready ([387181c](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/387181cab56c7e5f9e1cf2b535245810cc597515))
* **device:** add option to exec commands asynchronously ([#365](https://github.com/rapyuta-robotics/rapyuta-io-cli/issues/365)) ([c6bea52](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/c6bea52209881827ceea6dcd084aa6677f1e014d)), closes [AB#16668](https://github.com/AB/issues/16668)
* **device:** handles failed hwil devices during apply and delete ([94bb48e](https://github.com/rapyuta-robotics/rapyuta-io-cli/commit/94bb48e54da70cbd767bd500104f957f429c81f7))

# [9.4.0](https://github.com/rapyuta-robotics/rapyuta-io-cli/compare/v9.3.0...v9.4.0) (2024-11-25)


Expand Down
2 changes: 1 addition & 1 deletion riocli/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "9.4.0"
__version__ = "9.5.0"

import os

Expand Down

0 comments on commit f7be4f7

Please sign in to comment.