Skip to content

Commit

Permalink
Fixed UseTransactionIdFixToAvoidEventLossInProjectionDaemon StoreOpti…
Browse files Browse the repository at this point in the history
…ons setting to be able to set it to true.

Bumped version to 3.14.1
  • Loading branch information
oskardudycz committed Oct 24, 2021
1 parent c7fef31 commit 76e00b7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion martenbuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace martenbuild
{
internal class MartenBuild
{
private const string BUILD_VERSION = "3.14.0";
private const string BUILD_VERSION = "3.14.1";

private const string DockerConnectionString =
"Host=localhost;Port=5432;Database=marten_testing;Username=postgres;password=postgres";
Expand Down
2 changes: 1 addition & 1 deletion src/Marten.CommandLine/Marten.CommandLine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>Command line tooling for Marten</Description>
<VersionPrefix>3.14.0</VersionPrefix>
<VersionPrefix>3.14.1</VersionPrefix>
<Authors>Jeremy D. Miller;Babu Annamalai;Oskar Dudycz;Joona-Pekka Kokko</Authors>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<AssemblyName>Marten.CommandLine</AssemblyName>
Expand Down
2 changes: 1 addition & 1 deletion src/Marten.NodaTime/Marten.NodaTime.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>NodaTime extension for Marten</Description>
<VersionPrefix>1.9.0</VersionPrefix>
<VersionPrefix>1.9.1</VersionPrefix>
<Authors>Jeremy D. Miller;Babu Annamalai;Oskar Dudycz;Joona-Pekka Kokko</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Marten.NodaTime</AssemblyName>
Expand Down
2 changes: 1 addition & 1 deletion src/Marten/Marten.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>.NET Transactional Document DB and Event Store on PostgreSQL</Description>
<VersionPrefix>3.14.0</VersionPrefix>
<VersionPrefix>3.14.1</VersionPrefix>
<Authors>Jeremy D. Miller;Babu Annamalai;Oskar Dudycz;Joona-Pekka Kokko</Authors>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<AssemblyName>Marten</AssemblyName>
Expand Down
2 changes: 1 addition & 1 deletion src/Marten/StoreOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public EnumStorage DuplicatedFieldEnumStorage
/// Requires db migrations for existing databases.
/// See https://github.com/JasperFx/marten/pull/1880 for details
/// </summary>
public bool UseTransactionIdFixToAvoidEventLossInProjectionDaemon => false;
public bool UseTransactionIdFixToAvoidEventLossInProjectionDaemon { get; set; } = false;

internal void CreatePatching()
{
Expand Down

0 comments on commit 76e00b7

Please sign in to comment.