Skip to content

Commit

Permalink
Bump the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
rampaa committed Jan 14, 2024
1 parent b44bd72 commit 7b7cfba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions JL.Core/Utilities/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ namespace JL.Core.Utilities;

public static class Utils
{
public static readonly Version JLVersion = new(1, 25, 0);
public static readonly Version JLVersion = new(1, 26, 0);
public static readonly string ApplicationPath = AppContext.BaseDirectory;
public static readonly string ResourcesPath = Path.Join(AppContext.BaseDirectory, "Resources");
public static readonly string ConfigPath = Path.Join(AppContext.BaseDirectory, "Config");
internal static StringPool StringPoolInstance => StringPool.Shared;
internal static readonly Regex s_numberRegex = new(@"\d+", RegexOptions.Compiled);
public static IFrontend Frontend { get; set; } = new DummyFrontend();
public const int CacheSize = 500;
public const int CacheSize = 100;

public static readonly LoggingLevelSwitch LoggingLevelSwitch = new() { MinimumLevel = Serilog.Events.LogEventLevel.Error };

Expand Down

0 comments on commit 7b7cfba

Please sign in to comment.