Skip to content

Commit

Permalink
All advisory locks needed to be public. Bumps to 7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Aug 5, 2024
1 parent 1fca939 commit 34ba979
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Version>7.7.0</Version>
<Version>7.8.0</Version>
<LangVersion>12.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down
2 changes: 1 addition & 1 deletion src/Weasel.Postgresql/AdvisoryLock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace Weasel.Postgresql;

internal class AdvisoryLock : IAdvisoryLock
public class AdvisoryLock : IAdvisoryLock
{
private readonly PostgresqlDatabase _database;
private readonly ILogger _logger;
Expand Down
2 changes: 1 addition & 1 deletion src/Weasel.SqlServer/AdvisoryLock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace Weasel.SqlServer;

internal class AdvisoryLock : IAdvisoryLock
public class AdvisoryLock : IAdvisoryLock
{
private readonly Func<SqlConnection> _source;
private readonly ILogger _logger;
Expand Down

0 comments on commit 34ba979

Please sign in to comment.