Skip to content

Commit

Permalink
bump index package version correctly (whoops)
Browse files Browse the repository at this point in the history
  • Loading branch information
kMutagene committed Mar 12, 2024
1 parent 523f76b commit deab8c4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/AVPRIndex/AVPRIndex.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/RELEASE_NOTES.md"))</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageVersion>0.0.5</PackageVersion>
<PackageVersion>0.0.6</PackageVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
18 changes: 16 additions & 2 deletions src/AVPRIndex/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
## v0.0.6
- Refactor and expose parsing & convenience functions:
- Frontmatter
- containsFrontmatter
- tryExtractFromString
- extractFromString
- ValidationPackageMetadata
- tryExtractFromString
- extractFromString
- tryExtractFromScript
- extractFromScript

all frontmatter/metadata extraction functions will replace line endings with "\n", as YamlDotNet will replace any line endings with new line when presented the string anyways.

that way, the extracted frontmatter/metadata (especially field values, which caused problems due to YamlDotNet's default behavior) will be consistent across different platforms.

## v0.0.5

- Add `getPreviewIndex` function that downloads the currently released preview index from the github release.
- Add `ValidationPackageMetadata.extractFromString` to extract metadata from a string
- Refactor and expose some Frontmatter parsing functions

## v0.0.4

Expand Down

0 comments on commit deab8c4

Please sign in to comment.