Skip to content

Commit

Permalink
Release 2.7.0 (#352)
Browse files Browse the repository at this point in the history
* Release 2.6.3 (#347)

* Enhancement to support Unix path! (#344)

I'm not sure you already got a try or a feedback about it but actually pickles run relatively well under Linux with mono which is interesting when like me you can't get a windows machine.

However without this little change we can't get the folder structure display correctly.

Could you integrate this modification?

Thanks

* Version Bump

* Update change log

* Add EnableComments to the targets file

* Adapt change log

* Version bump to 2.7.0
  • Loading branch information
dirkrombauts authored Jun 14, 2016
1 parent 094820d commit 3461674
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ 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.7.0] - 2016-06-14

### Added

- Make #-style comments configurable - Default to True ([346](https://github.com/picklesdoc/pickles/issues/346)) (by [@ocsurfnut](https://github.com/ocsurfnut)).

## [2.6.3] - 2016-05-24

### 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.6.3"
set "picklesVersion=2.7.0"

cls

Expand Down
3 changes: 2 additions & 1 deletion src/Pickles/Pickles.MSBuild/build/Pickles.MSBuild.targets
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
SystemUnderTestVersion="$(Pickles_SystemUnderTestVersion)"
DocumentationFormat="$(Pickles_DocumentationFormat)"
Language="$(Pickles_Language)"
IncludeExperimentalFeatures="$(Pickles_IncludeExperimentalFeatures)"/>
IncludeExperimentalFeatures="$(Pickles_IncludeExperimentalFeatures)"
EnableComments="$(Pickles_EnableComments)" />
</Target>
</Project>
8 changes: 4 additions & 4 deletions src/Pickles/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
[assembly: AssemblyTrademarkAttribute("")]
[assembly: AssemblyCultureAttribute("")]
[assembly: ComVisibleAttribute(false)]
[assembly: AssemblyVersionAttribute("2.6.3")]
[assembly: AssemblyFileVersionAttribute("2.6.3")]
[assembly: AssemblyVersionAttribute("2.7.0")]
[assembly: AssemblyFileVersionAttribute("2.7.0")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "2.6.3";
internal const string InformationalVersion = "2.6.3";
internal const string Version = "2.7.0";
internal const string InformationalVersion = "2.7.0";
}
}

0 comments on commit 3461674

Please sign in to comment.