Skip to content
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.

⬆️ Upgrade to libhal/4.0.0 #11

Merged
merged 1 commit into from
May 14, 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
11 changes: 11 additions & 0 deletions .github/workflows/5.0.0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: 🚀 Deploy 5.0.0

on:
workflow_dispatch:

jobs:
deploy:
uses: libhal/ci/.github/workflows/[email protected]
with:
version: 5.0.0
secrets: inherit
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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.
8 changes: 4 additions & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down