Skip to content

Commit 2bbd61a

Browse files
committed
Bump Version Number
Former-commit-id: e5c99c7
1 parent faae0fc commit 2bbd61a

File tree

4 files changed

+37
-13
lines changed

4 files changed

+37
-13
lines changed

.hdoc.toml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[project]
2+
name = "LibRapid"
3+
version = "v0.6.9"
4+
num_threads = 0
5+
6+
git_repo_url = "https://github.com/LibRapid/librapid/"
7+
git_default_branch = "master"
8+
9+
[paths]
10+
compile_commands = "build/compile_commands.json"
11+
output_dir = "docs/build/"
12+
13+
[pages]
14+
homepage = "docs/index.md"
15+
paths = [
16+
"docs/Getting Started.md",
17+
"docs/CMake Integration.md",
18+
"docs/Using LibRapid with CUDA.md",
19+
"docs/Caution.md"
20+
]
21+
22+
[ignore]
23+
# Symbols from any of the following path fragments will be ignored
24+
paths = [
25+
"test",
26+
"librapid/vendor",
27+
"librapid/cxxblas",
28+
"librapid/blas",
29+
"build/"
30+
]

CITATION.cff

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ authors:
55
- family-names: "Davis"
66
given-names: "Toby"
77
title: "LibRapid: Optimised Mathematics for C++"
8-
version: 0.6.8
9-
date-released: "2023-02-21"
8+
version: 0.6.9
9+
date-released: "2023-03-01"
1010
type: software
1111
url: "https://github.com/LibRapid/librapid"
1212
license: MIT

Doxyfile

+4-10
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "LibRapid"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = v0.6.8
41+
PROJECT_NUMBER = v0.6.9
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a
@@ -58,7 +58,7 @@ PROJECT_LOGO = img/LR_icon.png
5858
# entered, it will be relative to the location where doxygen was started. If
5959
# left blank the current directory will be used.
6060

61-
OUTPUT_DIRECTORY = ./docs/
61+
OUTPUT_DIRECTORY = ./docBuild
6262

6363
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
6464
# directories (in 2 levels) under the output directory of each output format and
@@ -162,7 +162,7 @@ FULL_PATH_NAMES = YES
162162
# will be relative from the directory where doxygen is started.
163163
# This tag requires that the tag FULL_PATH_NAMES is set to YES.
164164

165-
STRIP_FROM_PATH = ../..
165+
STRIP_FROM_PATH =
166166

167167
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
168168
# path mentioned in the documentation of a class, which tells the reader which
@@ -963,9 +963,7 @@ RECURSIVE = YES
963963
# Note that relative paths are relative to the directory from which doxygen is
964964
# run.
965965

966-
EXCLUDE = librapid/blas \
967-
librapid/cxxblas \
968-
librapid/vendor
966+
EXCLUDE =
969967

970968
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
971969
# directories that are symbolic links (a Unix file system feature) are excluded
@@ -2299,10 +2297,6 @@ INCLUDE_FILE_PATTERNS =
22992297
PREDEFINED = LIBRAPID_USE_MULTIPREC=\
23002298
LIBRAPID_HAS_CUDA=\
23012299
LIBRAPID_HAS_OMP=\
2302-
LIBRAPID_NODISCARD=\
2303-
LIBRAPID_ALWAYS_INLINE=\
2304-
LIBRAPID_INLINE=\
2305-
LIBRAPID_RELEASE_NOEXCEPT=
23062300

23072301
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
23082302
# tag can be used to specify a list of macro names that should be expanded. The

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
MAJOR 0
22
MINOR 6
3-
PATCH 8
3+
PATCH 9

0 commit comments

Comments
 (0)