Skip to content

Commit 17a96cc

Browse files
committed
Bump versions: host 0.3.0, contracts 1.0.0, plugins 0.3.0
1 parent 231c39d commit 17a96cc

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<PropertyGroup>
1818
<!-- Host EXE version. Plugin packages each declare their own
1919
<Version> in their csproj so they're decoupled from this. -->
20-
<Version>0.2.5</Version>
20+
<Version>0.3.0</Version>
2121
<Authors>ProxyLayer</Authors>
2222
<Product>AzureTray</Product>
2323
<Copyright>Copyright (c) ProxyLayer</Copyright>

src/AzureTray.Plugin.Contracts/AzureTray.Plugin.Contracts.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
the host's <Version> in Directory.Build.props. The host can ship
1616
many releases without changing this; we only bump when the
1717
contracts surface itself changes. Bump when adding members. -->
18-
<Version>0.3.0</Version>
18+
<Version>1.0.0</Version>
1919

2020
<IsPackable>true</IsPackable>
2121
<PackageId>AzureTray.Plugin.Contracts</PackageId>

src/AzureTray.Plugin.Contracts/PluginApiVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
public static class PluginApiVersion
1010
{
1111
/// <summary>The current contract version. Declare this in <see cref="ITrayPlugin.ApiVersion"/>.</summary>
12-
public const int Current = 1;
12+
public const int Current = 2;
1313
}

src/AzureTray.Plugin.LAPS/AzureTray.Plugin.LAPS.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<!-- Plugin version is tracked independently of the host. Bump when the
1313
plugin's behaviour changes; host releases don't affect this value.
1414
Publish via the workflow_dispatch trigger on publish-plugins.yml. -->
15-
<Version>0.2.0</Version>
15+
<Version>0.3.0</Version>
1616

1717
<!-- See AzureTray.Plugin.PIM for rationale. Bundles transitive
1818
NuGet deps into the build output so they ship inside the

src/AzureTray.Plugin.PIM/AzureTray.Plugin.PIM.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<!-- Plugin version is tracked independently of the host. Bump when the
1313
plugin's behaviour changes; host releases don't affect this value.
1414
Publish via the workflow_dispatch trigger on publish-plugins.yml. -->
15-
<Version>0.2.0</Version>
15+
<Version>0.3.0</Version>
1616

1717
<!-- Bundle every transitive NuGet dependency into the build output
1818
(and therefore into lib/net8.0/ of the .nupkg). The host's

0 commit comments

Comments
 (0)