From 1a7ce916ba37ad1e5b9a817b7af55ea7388a42fd Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Mon, 9 Oct 2023 11:00:52 +0100 Subject: [PATCH 1/3] bump github-pages-deploy-action version --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e076cb28..0bb760b1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -45,7 +45,7 @@ jobs: doxyfile-path: ./Doxyfile working-directory: . - name: Deploy to GitHub Pages - uses: JamesIves/github-pages-deploy-action@v4.4.2 + uses: JamesIves/github-pages-deploy-action@v4.4.3 with: branch: gh-pages folder: html From 0cf8df45a47a96c8d3e86ceb7182c6b59d57b1c7 Mon Sep 17 00:00:00 2001 From: Andrew Rowley Date: Tue, 19 Dec 2023 15:30:32 +0000 Subject: [PATCH 2/3] Fix multiply so it doesn't divide! --- include/stdfix-full-iso.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stdfix-full-iso.h b/include/stdfix-full-iso.h index 812e98cd..1a0442b0 100644 --- a/include/stdfix-full-iso.h +++ b/include/stdfix-full-iso.h @@ -1489,7 +1489,7 @@ static inline unsigned int muliuk( unsigned int n, u1616 x) { - return __UI((__U64(n) << 16) / bitsuk(x)); + return __UI(__U64(n) * __U64(bitsuk(x)) >> 16); } //! \brief Multiplies an unsigned long integer by an unsigned long accum giving From ca04abbda9d74dddea88fee2e4492634f0cc8fc5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 04:14:47 +0000 Subject: [PATCH 3/3] Bump mattnotmitt/doxygen-action from 1.9.5 to 1.9.8 Bumps [mattnotmitt/doxygen-action](https://github.com/mattnotmitt/doxygen-action) from 1.9.5 to 1.9.8. - [Release notes](https://github.com/mattnotmitt/doxygen-action/releases) - [Commits](https://github.com/mattnotmitt/doxygen-action/compare/v1.9.5...v1.9.8) --- updated-dependencies: - dependency-name: mattnotmitt/doxygen-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e076cb28..2b09e8d3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -40,7 +40,7 @@ jobs: env: SPINN_DIRS: ${{ github.workspace }}/spinnaker_tools - name: Doxygen - uses: mattnotmitt/doxygen-action@v1.9.5 + uses: mattnotmitt/doxygen-action@v1.9.8 with: doxyfile-path: ./Doxyfile working-directory: .