diff --git a/.github/workflows/5.0.0.yml b/.github/workflows/5.0.0.yml new file mode 100644 index 0000000..b5261ac --- /dev/null +++ b/.github/workflows/5.0.0.yml @@ -0,0 +1,11 @@ +name: 🚀 Deploy 5.0.0 + +on: + workflow_dispatch: + +jobs: + deploy: + uses: libhal/ci/.github/workflows/deploy_all.yml@5.x.y + with: + version: 5.0.0 + secrets: inherit diff --git a/README.md b/README.md index fdcb046..38b1269 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # libhal-soft + [![✅CI](https://github.com/libhal/libhal-soft/actions/workflows/ci.yml/badge.svg)](https://github.com/libhal/libhal-soft/actions/workflows/ci.yml) -[![coverage](https://libhal.github.io/libhal-soft/coverage/coverage.svg)](https://libhal.github.io/libhal-soft/coverage/) -[![Codacy Badge](https://app.codacy.com/project/badge/Grade/b084e6d5962d49a9afcb275d62cd6586)](https://www.codacy.com/gh/libhal/libhal-soft/dashboard?utm_source=github.com&utm_medium=referral&utm_content=libhal/libhal-soft&utm_campaign=Badge_Grade) [![GitHub stars](https://img.shields.io/github/stars/libhal/libhal-soft.svg)](https://github.com/libhal/libhal-soft/stargazers) [![GitHub forks](https://img.shields.io/github/forks/libhal/libhal-soft.svg)](https://github.com/libhal/libhal-soft/network) [![GitHub issues](https://img.shields.io/github/issues/libhal/libhal-soft.svg)](https://github.com/libhal/libhal-soft/issues) @@ -40,9 +39,3 @@ See [`CONTRIBUTING.md`](CONTRIBUTING.md) for details. ## License Apache 2.0; see [`LICENSE`](LICENSE) for details. - -## Disclaimer - -This project is not an official Google project. It is not supported by -Google and Google specifically disclaims all warranties as to its quality, -merchantability, or fitness for a particular purpose. diff --git a/conanfile.py b/conanfile.py index 0f9d819..044adf2 100644 --- a/conanfile.py +++ b/conanfile.py @@ -52,13 +52,13 @@ def validate(self): def build_requirements(self): self.tool_requires("cmake/3.27.1") - self.tool_requires("libhal-cmake-util/3.0.1") - self.test_requires("libhal-mock/[^3.0.0]") + self.tool_requires("libhal-cmake-util/[^4.1.2]") + self.test_requires("libhal-mock/[^4.0.0]") self.test_requires("boost-ext-ut/1.1.9") def requirements(self): - self.requires("libhal/[^3.0.0]", transitive_headers=True) - self.requires("libhal-util/[^4.0.1]") + self.requires("libhal/[^4.0.0]", transitive_headers=True) + self.requires("libhal-util/[^5.0.0]") def layout(self): cmake_layout(self)