Skip to content

Commit

Permalink
Release v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
markashleybell committed Sep 1, 2020
1 parent 8f6ea47 commit 66835c3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [3.0.1] - 2020-09-01
### Fixed
- `IgnoreList.IsAnyParentDirectoryIgnored` no longer throws if you pass it a non-relative path (thanks, [@nojaf](https://github.com/nojaf))

## [3.0.0] - 2019-03-13
### Changed
- Removed C# translation of GPL `wildmatch.c` code (which was technically a license violation)
Expand Down Expand Up @@ -65,6 +69,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
Initial release.

[Unreleased]: https://github.com/markashleybell/MAB.DotIgnore/compare/v3.0.0...HEAD
[3.0.1]: https://github.com/markashleybell/MAB.DotIgnore/compare/v3.0.0...v3.0.1
[3.0.0]: https://github.com/markashleybell/MAB.DotIgnore/compare/v2.0.1...v3.0.0
[2.0.1]: https://github.com/markashleybell/MAB.DotIgnore/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/markashleybell/MAB.DotIgnore/compare/v1.4.0...v2.0.0
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<Version>3.0.0</Version>
<FileVersion>3.0.0.0</FileVersion>
<Version>3.0.1</Version>
<FileVersion>3.0.1.0</FileVersion>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<Copyright>© Mark Ashley Bell 2018</Copyright>
<Authors>Mark Ashley Bell</Authors>
Expand Down
6 changes: 4 additions & 2 deletions MAB.DotIgnore/MAB.DotIgnore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<PropertyGroup>
<TargetFrameworks>netstandard1.3;net4</TargetFrameworks>
<PackageId>MAB.DotIgnore</PackageId>
<PackageLicenseUrl>https://github.com/markashleybell/MAB.DotIgnore/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/markashleybell/MAB.DotIgnore</PackageProjectUrl>
<RepositoryUrl>https://github.com/markashleybell/MAB.DotIgnore.git</RepositoryUrl>
<Description>Load and parse .gitignore files (or any list of pattern strings using the same pattern syntax) to produce an IgnoreList, which can be used to ignore specific files and folders during (for example) a file copy operation.</Description>
Expand All @@ -14,7 +13,7 @@
<AssemblyOriginatorKeyFile>MAB.DotIgnore.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<LangVersion>latest</LangVersion>
<Version>3.0.0</Version>
<PackageLicenseFile>licenses\LICENSE.md</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.3|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard1.3\MAB.DotIgnore.xml</DocumentationFile>
Expand All @@ -41,6 +40,9 @@
<_Parameter1>$(MSBuildProjectName).Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c9cb9ee4d4df4ec74aad855975b0a399a3149103af8073114915538b7212d4a005592a38e25d3f54114a7885e2aaae3c05371de551430a5f0f81f9ed9a2ce50f72ad4636676eb619d9abb4175bc5383f94e07fcb85cff9322e0e14fd1c3da9dd98ae0acc30df16a379f342277d40809a93f1e96bec780b21eb8a163dc82c42c6</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE.md" Pack="true" PackagePath="licenses" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.6.3">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 66835c3

Please sign in to comment.