Skip to content

Commit 7aab905

Browse files
authored
Bump Doxygen v1.13.0 -> v1.13.2 (#5116)
Signed-off-by: Adarsh <[email protected]>
1 parent d279736 commit 7aab905

File tree

6 files changed

+30
-25
lines changed

6 files changed

+30
-25
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
build-and-deploy:
1818
runs-on: ubuntu-latest
1919
env:
20-
DOXYGEN_VERSION: 1.13.0
20+
DOXYGEN_VERSION: 1.13.2
2121
DOXYGEN_AWESOME_VERSION: 2.3.4
2222
PR_PATH: pr-preview/${{ github.event.number }}
2323
DOMAIN: p4lang.github.io

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ use them, but YMMV.
287287
288288
- Python 3 for scripting and running tests
289289
290-
- Optional: Documentation generation requires Doxygen (1.13.0) and Graphviz (2.38.0 or higher).
290+
- Optional: Documentation generation requires Doxygen (1.13.2) and Graphviz (2.38.0 or higher).
291291
292292
Backends may have additional dependencies. The dependencies for the backends
293293
included with `P4C` are documented here:
@@ -311,14 +311,14 @@ pip3 install --user -r requirements.txt
311311
**For documentation building:**
312312

313313
**Tools**
314-
- Download the Doxygen 1.13.0 binary
314+
- Download the Doxygen 1.13.2 binary
315315
```bash
316-
wget https://github.com/doxygen/doxygen/releases/download/Release_1_13_0/doxygen-1.13.0.linux.bin.tar.gz
316+
wget https://github.com/doxygen/doxygen/releases/download/Release_1_13_0/doxygen-1.13.2.linux.bin.tar.gz
317317
```
318318
- Extract and install Doxygen
319319
```bash
320-
tar xzvf doxygen-1.13.0.linux.bin.tar.gz
321-
cd doxygen-1.13.0
320+
tar xzvf doxygen-1.13.2.linux.bin.tar.gz
321+
cd doxygen-1.13.2
322322
sudo make install
323323
cd ..
324324
```
@@ -362,14 +362,14 @@ sudo pip3 install -r requirements.txt
362362
**For documentation building:**
363363

364364
**Tools**
365-
- Download the Doxygen 1.13.0 binary
365+
- Download the Doxygen 1.13.2 binary
366366
```bash
367-
wget https://github.com/doxygen/doxygen/releases/download/Release_1_13_0/doxygen-1.13.0.linux.bin.tar.gz
367+
wget https://github.com/doxygen/doxygen/releases/download/Release_1_13_0/doxygen-1.13.2.linux.bin.tar.gz
368368
```
369369
- Extract and install Doxygen
370370
```bash
371-
tar xzvf doxygen-1.13.0.linux.bin.tar.gz
372-
cd doxygen-1.13.0
371+
tar xzvf doxygen-1.13.2.linux.bin.tar.gz
372+
cd doxygen-1.13.2
373373
sudo make install
374374
cd ..
375375
```
@@ -421,7 +421,7 @@ Installing on macOS:
421421
```
422422

423423
**Optional documentation building tools:**
424-
- Download and install the Doxygen 1.13.0 DMG file from [here](https://github.com/doxygen/doxygen/releases/download/Release_1_13_0/Doxygen-1.13.0.dmg).
424+
- Download and install the Doxygen 1.13.2 DMG file from [here](https://github.com/doxygen/doxygen/releases/download/Release_1_13_0/Doxygen-1.13.2.dmg).
425425
- Install Graphviz
426426
```
427427
brew install graphviz

docs/doxygen/doxygen.cfg

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Doxyfile 1.13.0
1+
# Doxyfile 1.13.2
22

33
# This file describes the settings to be used by the documentation system
44
# Doxygen (www.doxygen.org) for a project.
@@ -2812,24 +2812,29 @@ DIR_GRAPH_MAX_DEPTH = 1
28122812
# generated by dot. For an explanation of the image formats see the section
28132813
# output formats in the documentation of the dot tool (Graphviz (see:
28142814
# https://www.graphviz.org/)).
2815-
# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
2816-
# to make the SVG files visible in IE 9+ (other browsers do not have this
2817-
# requirement).
2815+
#
2816+
# Note the formats svg:cairo and svg:cairo:cairo cannot be used in combination
2817+
# with INTERACTIVE_SVG (the INTERACTIVE_SVG will be set to NO).
28182818
# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,
2819-
# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
2820-
# png:gdiplus:gdiplus.
2819+
# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus,
2820+
# png:gdiplus:gdiplus, svg:cairo, svg:cairo:cairo, svg:svg, svg:svg:core,
2821+
# gif:cairo, gif:cairo:gd, gif:cairo:gdiplus, gif:gdiplus, gif:gdiplus:gdiplus,
2822+
# gif:gd, gif:gd:gd, jpg:cairo, jpg:cairo:gd, jpg:cairo:gdiplus, jpg:gd,
2823+
# jpg:gd:gd, jpg:gdiplus and jpg:gdiplus:gdiplus.
28212824
# The default value is: png.
28222825
# This tag requires that the tag HAVE_DOT is set to YES.
28232826

28242827
DOT_IMAGE_FORMAT = svg
28252828

2826-
# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
2827-
# enable generation of interactive SVG images that allow zooming and panning.
2829+
# If DOT_IMAGE_FORMAT is set to svg or svg:svg or svg:svg:core, then this option
2830+
# can be set to YES to enable generation of interactive SVG images that allow
2831+
# zooming and panning.
28282832
#
28292833
# Note that this requires a modern browser other than Internet Explorer. Tested
28302834
# and working are Firefox, Chrome, Safari, and Opera.
2831-
# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
2832-
# the SVG files visible. Older versions of IE do not have SVG support.
2835+
#
2836+
# Note This option will be automatically disabled when DOT_IMAGE_FORMAT is set
2837+
# to svg:cairo or svg:cairo:cairo.
28332838
# The default value is: NO.
28342839
# This tag requires that the tag HAVE_DOT is set to YES.
28352840

docs/doxygen/p4c_footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- HTML footer for doxygen 1.13.0-->
1+
<!-- HTML footer for doxygen 1.13.2-->
22
<!-- start footer part -->
33
<!--BEGIN GENERATE_TREEVIEW-->
44
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->

docs/doxygen/p4c_header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- HTML header for doxygen 1.13.0-->
1+
<!-- HTML header for doxygen 1.13.2-->
22
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
33
<html xmlns="http://www.w3.org/1999/xhtml" lang="$langISO">
44
<head>

docs/doxygen/p4c_layout.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<doxygenlayout version="1.0">
3-
<!-- Generated by doxygen 1.13.0 -->
2+
<doxygenlayout version="2.0">
3+
<!-- Generated by doxygen 1.13.2 -->
44
<!-- Navigation index tabs for HTML output -->
55
<navindex>
66
<tab type="mainpage" visible="yes" title=""/>

0 commit comments

Comments
 (0)