Skip to content

Commit

Permalink
revert back to v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nytian committed Nov 21, 2024
1 parent a6b6247 commit 738c44d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

<!-- Version settings: https://andrewlock.net/version-vs-versionsuffix-vs-packageversion-what-do-they-all-mean/ -->
<PropertyGroup>
<MajorVersion>2</MajorVersion>
<MinorVersion>0</MinorVersion>
<MajorVersion>1</MajorVersion>
<MinorVersion>5</MinorVersion>
<PatchVersion>0</PatchVersion>
<VersionPrefix>$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix>
<VersionSuffix></VersionSuffix>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -502,8 +502,8 @@ async Task ValidateDatabaseSchemaAsync(TestDatabase database, string schemaName
this.output,
database.ConnectionString,
schemaName);
Assert.Equal(2, currentSchemaVersion.Major);
Assert.Equal(0, currentSchemaVersion.Minor);
Assert.Equal(1, currentSchemaVersion.Major);
Assert.Equal(5, currentSchemaVersion.Minor);
Assert.Equal(0, currentSchemaVersion.Patch);
}

Expand Down

0 comments on commit 738c44d

Please sign in to comment.