Skip to content

Commit

Permalink
Release 2.1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
WorkingRobot committed Feb 23, 2024
1 parent 2cced24 commit a575ad0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Craftimizer/Craftimizer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Asriel Camora</Authors>
<Version>2.0.3.0</Version>
<Version>2.1.0.0</Version>
<PackageProjectUrl>https://github.com/WorkingRobot/craftimizer.git</PackageProjectUrl>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Craftimizer/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public Plugin([RequiredVersion("1.0")] DalamudPluginInterface pluginInterface)
IconManager = new();

var assembly = Assembly.GetExecutingAssembly();
Version = assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()!.InformationalVersion;
Version = assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()!.InformationalVersion.Split('+')[0];
Author = assembly.GetCustomAttribute<AssemblyCompanyAttribute>()!.Company;
BuildConfiguration = assembly.GetCustomAttribute<AssemblyConfigurationAttribute>()!.Configuration;
Icon = IconManager.GetAssemblyTexture("icon.png");
Expand Down

1 comment on commit a575ad0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: a575ad0 Previous: 337d42f Ratio
Craftimizer.Benchmark.Bench.Solve(State: 912069F9, Config: F8E944C4) 1284300685.7142856 ns (± 3032412.7397825657)
Craftimizer.Benchmark.Bench.Solve(State: 912069F9, Config: F8E944C4) 880558073.3333334 ns (± 3446156.2006441457)
Craftimizer.Benchmark.Bench.Solve(State: B17CD3F1, Config: F8E944C4) 1340477220 ns (± 2534237.257807)
Craftimizer.Benchmark.Bench.Solve(State: B17CD3F1, Config: F8E944C4) 1084423771.4285715 ns (± 2791058.706608706)

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.