Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.9.0 #381

Merged
merged 9 commits into from
Oct 7, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ Features in Experimental are subject to change and removal without being conside

This document is formatted according to the principles of [Keep A CHANGELOG](http://keepachangelog.com).

## [2.9.0] - 2016-10-07

### Changed

- Show parser failures and quit with an error ([379](https://github.com/picklesdoc/pickles/pull/379)) (by [@Sjaaky](https://github.com/Sjaaky)).

### Fixed

- Fix Importing Test Results Failure for MsTest for Ignored Scenarios ([378](https://github.com/picklesdoc/pickles/pull/378)) (by [@wbagit](https://github.com/wbagit)).
- Better Dealing with Special Characters in Scenario Examples ([375](https://github.com/picklesdoc/pickles/pull/375)) (by [@thopark](https://github.com/thopark)).

## [2.8.3] - 2016-09-28

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
set "picklesVersion=2.8.3"
set "picklesVersion=2.9.0"

cls

Expand Down
14 changes: 10 additions & 4 deletions src/Pickles/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,17 @@
[assembly: AssemblyTrademarkAttribute("")]
[assembly: AssemblyCultureAttribute("")]
[assembly: ComVisibleAttribute(false)]
[assembly: AssemblyVersionAttribute("2.8.3")]
[assembly: AssemblyFileVersionAttribute("2.8.3")]
[assembly: AssemblyVersionAttribute("2.9.0")]
[assembly: AssemblyFileVersionAttribute("2.9.0")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "2.8.3";
internal const string InformationalVersion = "2.8.3";
internal const System.String AssemblyProduct = "Pickles";
internal const System.String AssemblyCompany = "Pickles";
internal const System.String AssemblyCopyright = "Copyright (c) Jeffrey Cameron 2010-2012, PicklesDoc 2012-present";
internal const System.String AssemblyTrademark = "";
internal const System.String AssemblyCulture = "";
internal const System.Boolean ComVisible = false;
internal const System.String AssemblyVersion = "2.9.0";
internal const System.String AssemblyFileVersion = "2.9.0";
}
}