Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
WilStead committed Aug 19, 2022
1 parent bfd58fd commit 1b1395e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: publish
env:
VERSION: '0.6.0-preview'
VERSION: '0.6.1-preview'
PRERELEASE: true
on:
push:
Expand Down
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.6.1-preview
### Updated
- Update dependencies

## 0.6.0-preview
### Changed
- Enable library trimming
Expand Down
6 changes: 3 additions & 3 deletions src/Article.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1544,7 +1544,7 @@ public async Task<string> GetHtmlAsync(
/// first).
/// </summary>
/// <param name="dataStore">An <see cref="IDataStore"/> instance.</param>
/// <param name="pageNumber">The current page number.</param>
/// <param name="pageNumber">The current page number. The first page is 1.</param>
/// <param name="pageSize">The page size.</param>
/// <param name="start">The earliest <see cref="Timestamp"/> to retrieve.</param>
/// <param name="end">The most recent <see cref="Timestamp"/> to retrieve.</param>
Expand All @@ -1553,8 +1553,8 @@ public async Task<string> GetHtmlAsync(
/// instances.</returns>
public async Task<IPagedList<Revision>> GetHistoryAsync(
IDataStore dataStore,
int pageNumber,
int pageSize,
int pageNumber = 1,
int pageSize = 50,
DateTimeOffset? start = null,
DateTimeOffset? end = null,
Expression<Func<Revision, bool>>? condition = null)
Expand Down
2 changes: 1 addition & 1 deletion src/Tavenem.Wiki.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<PackageReference Include="HtmlSanitizer" Version="7.1.542" />
<PackageReference Include="Jint" Version="3.0.0-beta-2039" />
<PackageReference Include="Markdig" Version="0.30.3" />
<PackageReference Include="Tavenem.DataStore" Version="0.36.0-preview" />
<PackageReference Include="Tavenem.DataStore" Version="0.36.1-preview" />
<PackageReference Include="Tavenem.DiffPatchMerge" Version="1.0.0" />
</ItemGroup>

Expand Down

0 comments on commit 1b1395e

Please sign in to comment.