Skip to content

Commit

Permalink
Release v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
markashleybell committed Mar 13, 2019
1 parent 55464b7 commit e79ee81
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [3.0.0] - 2019-03-13
### Changed
- Removed C# translation of GPL `wildmatch.c` code (which was technically a license violation)
- Memory consumption and GC activity have been dramatically reduced
- Library now passes all current `.gitignore` tests [see here](https://github.com/git/git/blob/master/t/t3070-wildmatch.sh)

## [2.0.1] - 2019-03-10
### Fixed
- Release library is no longer built in `Debug` configuration.
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>3.0.0-alpha1</Version>
<Version>3.0.0</Version>
<FileVersion>3.0.0.0</FileVersion>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<Copyright>© Mark Ashley Bell 2018</Copyright>
Expand Down
4 changes: 3 additions & 1 deletion MAB.DotIgnore/MAB.DotIgnore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<AssemblyOriginatorKeyFile>MAB.DotIgnore.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<LangVersion>latest</LangVersion>
<Version>3.0.0-rc2</Version>
<Version>3.0.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.3|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard1.3\MAB.DotIgnore.xml</DocumentationFile>
Expand All @@ -28,6 +28,8 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net4|AnyCPU'">
<DocumentationFile>bin\Debug\net4\MAB.DotIgnore.xml</DocumentationFile>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<WarningLevel>3</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net4|AnyCPU'">
Expand Down

0 comments on commit e79ee81

Please sign in to comment.