Skip to content

Commit

Permalink
Test new AssemblyVersion approach for reproducible builds
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyrat committed Jun 6, 2024
1 parent 80c60a5 commit bc65cdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion KeePassRPC/KeePassRPCExt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace KeePassRPC
public sealed class KeePassRPCExt : Plugin
{
// version information
public static readonly Version PluginVersion = new Version(2, 0, 0);
public static readonly Version PluginVersion = new Version(2, 0, 1);

public override string UpdateUrl
{
Expand Down
4 changes: 2 additions & 2 deletions KeePassRPC/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
[assembly: Guid("89631AAE-8DE6-4593-8DAB-AB28490A490A")]

// Assembly version information
[assembly: AssemblyVersion("2.0.48.*")]
[assembly: AssemblyFileVersion("2.0.0.0")] // also change PluginVersion in KeePassRPCExt.cs!
[assembly: AssemblyVersion("2.0.1.0")]
[assembly: AssemblyFileVersion("2.0.1.0")] // also change AssemblyVersion and PluginVersion in KeePassRPCExt.cs!

0 comments on commit bc65cdb

Please sign in to comment.