Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
name: ${{ matrix.os }} / ${{ matrix.compiler }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install GCC (Linux)
if: matrix.os == 'ubuntu-latest' && startsWith(matrix.compiler, 'g++')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install Doxygen
run: sudo apt-get update && sudo apt-get install -y doxygen graphviz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Upload component to ESP Component Registry
uses: espressif/upload-components-ci-action@v2
Expand Down
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "thermo"
PROJECT_NUMBER = "1.0.0"
PROJECT_NUMBER = "1.3.0"
PROJECT_BRIEF = "Type-safe temperature handling library modeled after std::chrono"
PROJECT_LOGO =
OUTPUT_DIRECTORY = .
Expand Down
2 changes: 1 addition & 1 deletion vcpkg-port/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO cleishm/thermo-cpp
REF "v${VERSION}"
SHA512 95d3618a5ddc5a0f0c842a331727eba90899d88a360615808f3597978fde57803385d430cce0c672c48607642b3ed8b00e09d6d9b8102825a6e1556b2d0029c8
SHA512 59053c3bbfd025023b66eca6dc4f849bd0e80e04e832885d6169c6da41a619cd8262846773c4f4b14801c39fbe665a4da345c4a2449a43636f28db1654527b05
HEAD_REF main
)

Expand Down
2 changes: 1 addition & 1 deletion vcpkg-port/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cleishm-thermo-cpp",
"version": "1.0.0",
"version": "1.3.0",
"description": "Type-safe temperature handling library modeled after std::chrono",
"homepage": "https://github.com/cleishm/thermo-cpp",
"license": "MIT",
Expand Down
Loading