Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollo3zehn committed Feb 27, 2024
1 parent c8f7a96 commit 0b1c294
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/Nexus.Sources.Federation/Federation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public Task SetContextAsync(DataSourceContext context, ILogger logger, Cancellat
public async Task<CatalogRegistration[]> GetCatalogRegistrationsAsync(string path, CancellationToken cancellationToken)
{
if (path == "/")
path = _mountPoint + "/";
path = _mountPoint;

var catalogInfos = await _nexusClient.Catalogs.GetChildCatalogInfosAsync(ToSourcePathPrefixedCatalogId(path), cancellationToken);

Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.0.0",
"suffix": "beta.4"
"suffix": "beta.5"
}

0 comments on commit 0b1c294

Please sign in to comment.