Skip to content

Commit 1abb84e

Browse files
committed
v4.2.0-rc7
1 parent 8811179 commit 1abb84e

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,10 @@ jobs:
353353
image: ubuntu-24.04
354354
runs-on: ${{ matrix.config.image }}
355355
steps:
356+
- name: Install Doxygen
357+
run: |
358+
sudo apt-get install -y doxygen
359+
356360
- uses: actions/checkout@v4
357361
with:
358362
ref: ${{needs.get_version.outputs.tag_name}}
@@ -365,10 +369,11 @@ jobs:
365369
run: |
366370
ls ${{github.workspace}}
367371
368-
- uses: mattnotmitt/doxygen-action@v1.12.0
369-
with:
370-
doxyfile-path: "${{github.workspace}}/docs/Doxyfile"
371-
working-directory: "${{github.workspace}}/docs"
372+
- name: Run Doxygen
373+
run: |
374+
cd "${{github.workspace}}/docs"
375+
doxygen ./Doxyfile
376+
cd ..
372377
373378
- name: Pack
374379
run: |

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ project(dxFeedGraalCxxApi)
1717

1818
include(cmake/ParseVersion.cmake)
1919

20-
set(DXFCXX_VERSION "v4.2.0-rc6" CACHE STRING "The dxFeed Graal CXX API package version")
20+
set(DXFCXX_VERSION "v4.2.0-rc7" CACHE STRING "The dxFeed Graal CXX API package version")
2121

2222
dxfcxx_ParseVersion(${DXFCXX_VERSION} DXFCXX_MAJOR_VERSION DXFCXX_MINOR_VERSION DXFCXX_PATCH_VERSION DXFCXX_SUFFIX_VERSION)
2323

0 commit comments

Comments
 (0)