fix: OpenAPI broken docs link

This commit is contained in:
Taimoor Zaeem
2025-06-28 07:58:14 +00:00
committed by Wolfgang Walther
parent 087b9ecca1
commit 8f4a200f33
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## Unreleased
### Fixed
- Fix OpenAPI broken docs link by @taimoorzaeem in #4048
## [13.0.4] - 2025-06-17
### Fixed
+1 -1
View File
@@ -26,7 +26,7 @@ prettyVersion =
docsVersion :: Text
docsVersion
| isPreRelease = "latest"
| otherwise = "v" <> (T.intercalate "." . map show . take 1 $ version)
| otherwise = "v" <> T.intercalate "." (take 1 version)
-- | Versions with two components (e.g., '1.1') are treated as pre-releases.