diff --git a/CITATION.cff b/CITATION.cff index d8ccaee6..a690c019 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,8 +5,8 @@ authors: - family-names: "Davis" given-names: "Toby" title: "LibRapid: Optimised Mathematics for C++" -version: 0.7.3 -date-released: "2023-08-03" +version: 0.7.4 +date-released: "2023-10-22" type: software url: "https://github.com/LibRapid/librapid" license: MIT diff --git a/Doxyfile b/Doxyfile index 9cfa87e7..f2627890 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "LibRapid" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v0.7.3 +PROJECT_NUMBER = v0.7.4 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a @@ -965,6 +965,7 @@ RECURSIVE = YES EXCLUDE = + # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. diff --git a/librapid/vendor/xsimd b/librapid/vendor/xsimd index bb9558c6..6f8cc98a 160000 --- a/librapid/vendor/xsimd +++ b/librapid/vendor/xsimd @@ -1 +1 @@ -Subproject commit bb9558c6b75ed336dce0a6696dd4958131bcae02 +Subproject commit 6f8cc98a979cdd271eb0d2a1fd754613ae52b327 diff --git a/pyproject.toml b/pyproject.toml index 91e9229d..f693b457 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ sdist.exclude = [ [project] name = "librapid" -version = "0.7.3" +version = "0.7.4" description = "A high-performance library for arrays and numeric calculations" readme = "README.md" long_description = ["file: README.md"] diff --git a/scripts/setVersion.py b/scripts/setVersion.py index fba8af36..e611d0c0 100644 --- a/scripts/setVersion.py +++ b/scripts/setVersion.py @@ -42,7 +42,7 @@ if args.version: # Validate version number - if not re.match("[0-9]+\.[0-9]+\.[0-9]+", args.version): + if not re.match("[0-9]+\\.[0-9]+\\.[0-9]+", args.version): print("[ ERROR ] Invalid version number") sys.exit(1) newMajorVersion = args.version.split(".")[0] @@ -93,7 +93,7 @@ print("Loaded pyproject.toml template") with open("../pyproject.toml", "w") as pyprojectFile: - versionString = f"\"{newMajorVersion}.{newMinorVersion}.{newPatchVersion}\"" + versionString = f"{newMajorVersion}.{newMinorVersion}.{newPatchVersion}" template = template.replace("$${{ INSERT_VERSION_NUMBER_HERE }}$$", versionString) pyprojectFile.write(template) print("Written to pyproject.toml") diff --git a/scripts/tmp/pyproject.toml b/scripts/tmp/pyprojectTemplate.toml similarity index 100% rename from scripts/tmp/pyproject.toml rename to scripts/tmp/pyprojectTemplate.toml diff --git a/version.txt b/version.txt index f4c18fec..f8e0d1d6 100644 --- a/version.txt +++ b/version.txt @@ -1,3 +1,3 @@ MAJOR 0 MINOR 7 -PATCH 3 +PATCH 4