Skip to content

Commit 4a0eb7f

Browse files
authored
fix: OpenAPI broken docs link (#4169)
1 parent f295130 commit 4a0eb7f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1212
+ The exposed schemas are now listed in the `hint` instead of the `message` field.
1313
- Improve error details of `PGRST301` error by @taimoorzaeem in #4051
1414

15+
### Fixed
16+
17+
- Fix OpenAPI broken docs link by @taimoorzaeem in #4080
18+
1519
## [13.0.4] - 2025-06-17
1620

1721
### Fixed

src/PostgREST/Version.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ prettyVersion =
2626
docsVersion :: Text
2727
docsVersion
2828
| isPreRelease = "latest"
29-
| otherwise = "v" <> (T.intercalate "." . map show . take 1 $ version)
29+
| otherwise = "v" <> T.intercalate "." (take 1 version)
3030

3131

3232
-- | Versions with two components (e.g., '1.1') are treated as pre-releases.

0 commit comments

Comments
 (0)