Skip to content

Commit

Permalink
Add "3.0" manifest version to SupportedVersions
Browse files Browse the repository at this point in the history
This becomes the default value for newly created libman.json files (so they will automatically get new feature support like fileMappings).
  • Loading branch information
jimmylewis committed May 21, 2024
1 parent b843139 commit 333c909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LibraryManager/Manifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class Manifest
/// <summary>
/// Supported versions of Library Manager
/// </summary>
public static readonly Version[] SupportedVersions = { new Version("1.0") };
public static readonly Version[] SupportedVersions = { new Version("1.0"), new Version("3.0") };
private IHostInteraction _hostInteraction;
private readonly List<ILibraryInstallationState> _libraries;
private IDependencies _dependencies;
Expand Down

0 comments on commit 333c909

Please sign in to comment.