From 0b1c2942514e657f2bea4b5cd23022395dd7d04e Mon Sep 17 00:00:00 2001 From: Apollo3zehn Date: Tue, 27 Feb 2024 12:40:58 +0100 Subject: [PATCH] Prepare release --- CHANGELOG.md | 4 ++++ src/Nexus.Sources.Federation/Federation.cs | 2 +- version.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82f1949..6354607 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v2.0.0-beta.5 - 2024-02-27 + +- Fix prefix modification algorithm. + ## v2.0.0-beta.4 - 2024-02-27 - Fix prefix modification algorithm. diff --git a/src/Nexus.Sources.Federation/Federation.cs b/src/Nexus.Sources.Federation/Federation.cs index e1504a2..6681d07 100644 --- a/src/Nexus.Sources.Federation/Federation.cs +++ b/src/Nexus.Sources.Federation/Federation.cs @@ -75,7 +75,7 @@ public Task SetContextAsync(DataSourceContext context, ILogger logger, Cancellat public async Task GetCatalogRegistrationsAsync(string path, CancellationToken cancellationToken) { if (path == "/") - path = _mountPoint + "/"; + path = _mountPoint; var catalogInfos = await _nexusClient.Catalogs.GetChildCatalogInfosAsync(ToSourcePathPrefixedCatalogId(path), cancellationToken); diff --git a/version.json b/version.json index 75b26b3..c8d3709 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { "version": "2.0.0", - "suffix": "beta.4" + "suffix": "beta.5" } \ No newline at end of file