Skip to content

Commit

Permalink
Release 3.0.1 (#620)
Browse files Browse the repository at this point in the history
* build setup

* Update Pickles.sln.DotSettings

* main and variables

* clean and test

* Publish

* Generate sample output≈

* workaround for packageid issue

* release 3.0.1

Updated Nuke build, removed old build files, fix for html output
  • Loading branch information
ericcmmi authored Oct 4, 2021
1 parent f2301bf commit a255a3c
Show file tree
Hide file tree
Showing 376 changed files with 11,697 additions and 22,385 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ _ReSharper*/
*.resharper
.fake/

#Project files
[Bb]uild/*

#Subversion files
.svn
Expand All @@ -63,6 +61,7 @@ reports/
merged/
test/
Documentation-*/
artifacts/
#Output/

#nCrunch files
Expand Down
115 changes: 115 additions & 0 deletions .nuke/build.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Build Schema",
"$ref": "#/definitions/build",
"definitions": {
"build": {
"type": "object",
"properties": {
"Configuration": {
"type": "string",
"description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)",
"enum": [
"Debug",
"Release"
]
},
"Continue": {
"type": "boolean",
"description": "Indicates to continue a previously failed build attempt"
},
"Help": {
"type": "boolean",
"description": "Shows the help text for this build assembly"
},
"Host": {
"type": "string",
"description": "Host for execution. Default is 'automatic'",
"enum": [
"AppVeyor",
"AzurePipelines",
"Bamboo",
"Bitrise",
"GitHubActions",
"GitLab",
"Jenkins",
"Rider",
"SpaceAutomation",
"TeamCity",
"Terminal",
"TravisCI",
"VisualStudio",
"VSCode"
]
},
"NoLogo": {
"type": "boolean",
"description": "Disables displaying the NUKE logo"
},
"Partition": {
"type": "string",
"description": "Partition to use on CI"
},
"Plan": {
"type": "boolean",
"description": "Shows the execution plan (HTML)"
},
"Profile": {
"type": "array",
"description": "Defines the profiles to load",
"items": {
"type": "string"
}
},
"Root": {
"type": "string",
"description": "Root directory during build execution"
},
"Skip": {
"type": "array",
"description": "List of targets to be skipped. Empty list skips all dependencies",
"items": {
"type": "string",
"enum": [
"Clean",
"GenerateSampleOutput",
"Pack",
"Publish",
"PublishNuGet",
"Test"
]
}
},
"Solution": {
"type": "string",
"description": "Path to a solution file that is automatically loaded"
},
"Target": {
"type": "array",
"description": "List of targets to be invoked. Default is '{default_target}'",
"items": {
"type": "string",
"enum": [
"Clean",
"GenerateSampleOutput",
"Pack",
"Publish",
"PublishNuGet",
"Test"
]
}
},
"Verbosity": {
"type": "string",
"description": "Logging verbosity during build execution. Default is 'Normal'",
"enum": [
"Minimal",
"Normal",
"Quiet",
"Verbose"
]
}
}
}
}
}
4 changes: 4 additions & 0 deletions .nuke/parameters.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "./build.schema.json",
"Solution": "src/Pickles/Pickles.sln"
}
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,23 @@ 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).

## [3.0.1] - 2021-10-04

### Updated
- .NET Core 3.1/.NET 5 Support!
- All libraries are .NET Standard 2.0 so they will work with anything from .NET Framework 4.6.1 to .NET 5.
- Dropping support for the UI project for the time being until a cross-platform solution can be created.
- Not including a Chocolatey distribution for the time being until a non-windows deployment can be created.
- MsBuild NuGet package is still being worked on. Zip file will be available with this release.
- Development can now be done on Windows, Mac or (potentially) Linux.
- [Nuke](https://nuke.build/index.html) build will simplify and speed up releases. Removed old build files.
- Multiple updates thanks to [Andrey Leskov](https://github.com/andrey-covergo)! (See PR [618](https://github.com/picklesdoc/pickles/pull/618))
- Update tests to launch on non-windows platform
- Update cucumber json report format to match official json schema
- Add feature uri to cucumer json report [#609](https://github.com/picklesdoc/pickles/issues/609)
- Add feature and step id, hidden field to Cucumber json report
- Make Pickles.CommandLine packable as dotnet tool

## [2.3.3] - 2021-03-11

### Fixed
Expand Down
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

84 changes: 0 additions & 84 deletions CreateTestResults.ps1

This file was deleted.

4 changes: 0 additions & 4 deletions DeployArtifacts.cmd

This file was deleted.

10 changes: 0 additions & 10 deletions DeployOutput.cmd

This file was deleted.

8 changes: 0 additions & 8 deletions DeployToChocolatey.cmd

This file was deleted.

8 changes: 0 additions & 8 deletions DeployToNuget.cmd

This file was deleted.

10 changes: 0 additions & 10 deletions InstallPackages.cmd

This file was deleted.

Loading

0 comments on commit a255a3c

Please sign in to comment.