From 62b1c6799614d59d3e0891ef7d47baf182d1f5f4 Mon Sep 17 00:00:00 2001 From: William Coolidge <wac@mmmi.sdu.dk> Date: Thu, 13 Mar 2025 13:16:21 +0100 Subject: [PATCH] v0.0.18 has markdown links mapped to https links in this repo --- README.md | 2 +- pyproject.toml | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2bb78a8..c6512e9 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ #### Versions -```0.0.16``` : Intial version with only the API for insertion and query. +```0.0.18``` : Intial version with only the API for insertion and query. | Element | Status | Comment | |:--- |:--- |:--- | diff --git a/pyproject.toml b/pyproject.toml index 660d82c..c354ecf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "semantic-api" -version = "0.0.16" +version = "0.0.18" dependencies = [ "behave == 1.2.6", "paho-mqtt == 2.1.0", @@ -32,8 +32,7 @@ path = "README.md" [[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]] # replace relative links with absolute links pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)' -replacement = '[\1](https://source.coderefinery.org/wac/semantic-api/src/doc/\g<2>)' - +replacement = '[\1](https://source.coderefinery.org/wac/semantic-api/-/blob/main/\g<2>)' requires-python = ">=3.8" -- GitLab