Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
  • Loading branch information
Pencilcaseman committed Oct 22, 2023
1 parent d3cdaec commit 6f3a16e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions scripts/setVersion.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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")
File renamed without changes.
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
MAJOR 0
MINOR 7
PATCH 3
PATCH 4

0 comments on commit 6f3a16e

Please sign in to comment.