Skip to content

Commit

Permalink
2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Critical-Impact committed Nov 16, 2024
1 parent 7739be7 commit e1fd39b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [2.1.2] - 2024-11-16

### Fixed

- Make GameData single instance

## [2.1.1] - 2024-11-13

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion DalaMock.Host/DalaMock.Host.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<LangVersion>12.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>2.1.1</Version>
<Version>2.1.2</Version>
<PackageProjectUrl>https://github.com/Critical-Impact/DalaMock</PackageProjectUrl>
<RepositoryUrl>https://github.com/Critical-Impact/DalaMock</RepositoryUrl>
<Authors>Critical-Impact</Authors>
Expand Down
2 changes: 1 addition & 1 deletion DalaMock.Sample/DalaMock.Sample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Nullable>enable</Nullable>
<LangVersion>12.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>2.1.1</Version>
<Version>2.1.2</Version>
<PackageProjectUrl>https://github.com/Critical-Impact/DalaMock</PackageProjectUrl>
<RepositoryUrl>https://github.com/Critical-Impact/DalaMock</RepositoryUrl>
<Authors>Critical-Impact</Authors>
Expand Down
2 changes: 1 addition & 1 deletion DalaMock.Shared/DalaMock.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<LangVersion>12.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>2.1.1</Version>
<Version>2.1.2</Version>
<PackageProjectUrl>https://github.com/Critical-Impact/DalaMock</PackageProjectUrl>
<RepositoryUrl>https://github.com/Critical-Impact/DalaMock</RepositoryUrl>
<Authors>Critical-Impact</Authors>
Expand Down
2 changes: 1 addition & 1 deletion DalaMock/DI/MockContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private void RegisterMockServices(ContainerBuilder builder)
new LuminaOptions
{
PanicOnSheetChecksumMismatch = false,
}));
})).SingleInstance();
builder.RegisterInstance(this.dalamudConfiguration);
builder.RegisterType<MockDalamudUi>().SingleInstance();
builder.RegisterType<PluginLoader>().SingleInstance();
Expand Down
2 changes: 1 addition & 1 deletion DalaMock/DalaMock.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<LangVersion>12.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>2.1.1</Version>
<Version>2.1.2</Version>
<PackageProjectUrl>https://github.com/Critical-Impact/DalaMock</PackageProjectUrl>
<RepositoryUrl>https://github.com/Critical-Impact/DalaMock</RepositoryUrl>
<Authors>Critical-Impact</Authors>
Expand Down

0 comments on commit e1fd39b

Please sign in to comment.