diff --git a/.github/workflows/3.0.0.yml b/.github/workflows/3.0.0.yml new file mode 100644 index 0000000..64084d1 --- /dev/null +++ b/.github/workflows/3.0.0.yml @@ -0,0 +1,11 @@ +name: 🚀 3.0.0 + +on: + workflow_dispatch: + +jobs: + deploy: + uses: libhal/ci/.github/workflows/deploy_all.yml@5.x.y + with: + version: 3.0.0 + secrets: inherit diff --git a/README.md b/README.md index 3f3ac72..1315a11 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,6 @@ See [`CONTRIBUTING.md`](CONTRIBUTING.md) for details. 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. **AFTER CLONING DELETE THE SECTION BELOW AND ADD YOUR OWN CONTENT**. diff --git a/conanfile.py b/conanfile.py index 8494079..9f693e2 100644 --- a/conanfile.py +++ b/conanfile.py @@ -26,7 +26,7 @@ class libhal_canrouter_conan(ConanFile): topics = ("can", "canrouter", "libhal", "driver") settings = "compiler", "build_type", "os", "arch" - python_requires = "libhal-bootstrap/[^1.0.0]" + python_requires = "libhal-bootstrap/[^2.0.0]" python_requires_extend = "libhal-bootstrap.library" def requirements(self): diff --git a/test_package/conanfile.py b/test_package/conanfile.py index c991d71..8e11c06 100644 --- a/test_package/conanfile.py +++ b/test_package/conanfile.py @@ -23,4 +23,4 @@ class TestPackageConan(ConanFile): def requirements(self): self.requires(self.tested_reference_str) - self.test_requires("libhal-mock/[^3.0.0]") + self.test_requires("libhal-mock/[^4.0.0]")