Skip to content

Commit

Permalink
Bump version to 2.1.2
Browse files Browse the repository at this point in the history
## [2.1.2] - 2020-02-20

New project structure release!

### Changed
- Changed project scaffolding
- Fixed docs

[2.1.2]: https://github.com/lefthandedgoat/canopy/releases/tag/v2.1.2
  • Loading branch information
lefthandedgoat committed Mar 7, 2020
1 parent d4bd2b9 commit 2d6e593
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 95 deletions.
6 changes: 3 additions & 3 deletions Build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -467,8 +467,8 @@ let generateAssemblyInfo _ =
|> Seq.iter (fun (projFileName, _, folderName, attributes) ->
match projFileName with
| Fsproj -> AssemblyInfoFile.createFSharp (folderName @@ "AssemblyInfo.fs") attributes
| Csproj -> AssemblyInfoFile.createCSharp ((folderName @@ "Properties") @@ "AssemblyInfo.cs") attributes
| Vbproj -> AssemblyInfoFile.createVisualBasic ((folderName @@ "My Project") @@ "AssemblyInfo.vb") attributes
| Csproj -> ()
| Vbproj -> ()
)

let dotnetPack ctx =
Expand Down Expand Up @@ -642,7 +642,7 @@ Target.create "ReleaseDocs" releaseDocs
==> "DotnetBuild"
==> "DotnetPack"
//==> "SourceLinkTest"
==> "PublishToNuGet"
//==> "PublishToNuGet"
==> "GitRelease"
==> "GitHubRelease"
==> "Release"
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.1.1] - 2020-02-20
## [2.1.2] - 2020-02-20
New project structure release!

### Changed
- Changed project scaffolding
- Fixed docs

[2.1.1]: https://github.com/lefthandedgoat/canopy/releases/tag/v2.1.1
[2.1.2]: https://github.com/lefthandedgoat/canopy/releases/tag/v2.1.2
22 changes: 14 additions & 8 deletions src/canopy.integration/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,21 @@ namespace System
open System.Reflection

[<assembly: AssemblyTitleAttribute("canopy.integration")>]
[<assembly: AssemblyProductAttribute("canopy.integration")>]
[<assembly: AssemblyDescriptionAttribute("F# web testing framework")>]
[<assembly: AssemblyVersionAttribute("2.1.1")>]
[<assembly: AssemblyFileVersionAttribute("2.1.1")>]
[<assembly: AssemblyProductAttribute("canopy")>]
[<assembly: AssemblyVersionAttribute("2.1.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2020-03-07T00:00:00.0000000-06:00")>]
[<assembly: AssemblyFileVersionAttribute("2.1.3")>]
[<assembly: AssemblyInformationalVersionAttribute("2.1.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","d4bd2b919c8ab9142ed6bca402415c92d76c5eab")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "canopy.integration"
let [<Literal>] AssemblyProduct = "canopy.integration"
let [<Literal>] AssemblyDescription = "F# web testing framework"
let [<Literal>] AssemblyVersion = "2.1.1"
let [<Literal>] AssemblyFileVersion = "2.1.1"
let [<Literal>] AssemblyProduct = "canopy"
let [<Literal>] AssemblyVersion = "2.1.3"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2020-03-07T00:00:00.0000000-06:00"
let [<Literal>] AssemblyFileVersion = "2.1.3"
let [<Literal>] AssemblyInformationalVersion = "2.1.3"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "d4bd2b919c8ab9142ed6bca402415c92d76c5eab"
18 changes: 12 additions & 6 deletions src/canopy/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,20 @@ open System.Reflection

[<assembly: AssemblyTitleAttribute("canopy")>]
[<assembly: AssemblyProductAttribute("canopy")>]
[<assembly: AssemblyDescriptionAttribute("F# web testing framework")>]
[<assembly: AssemblyVersionAttribute("2.1.1")>]
[<assembly: AssemblyFileVersionAttribute("2.1.1")>]
[<assembly: AssemblyVersionAttribute("2.1.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2020-03-07T00:00:00.0000000-06:00")>]
[<assembly: AssemblyFileVersionAttribute("2.1.3")>]
[<assembly: AssemblyInformationalVersionAttribute("2.1.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","d4bd2b919c8ab9142ed6bca402415c92d76c5eab")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "canopy"
let [<Literal>] AssemblyProduct = "canopy"
let [<Literal>] AssemblyDescription = "F# web testing framework"
let [<Literal>] AssemblyVersion = "2.1.1"
let [<Literal>] AssemblyFileVersion = "2.1.1"
let [<Literal>] AssemblyVersion = "2.1.3"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2020-03-07T00:00:00.0000000-06:00"
let [<Literal>] AssemblyFileVersion = "2.1.3"
let [<Literal>] AssemblyInformationalVersion = "2.1.3"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "d4bd2b919c8ab9142ed6bca402415c92d76c5eab"
58 changes: 20 additions & 38 deletions tests/basictests/AssemblyInfo.fs
Original file line number Diff line number Diff line change
@@ -1,41 +1,23 @@
namespace basictests.AssemblyInfo

// Auto-Generated by FAKE; do not edit
namespace System
open System.Reflection
open System.Runtime.CompilerServices
open System.Runtime.InteropServices

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[<assembly: AssemblyTitle("basictests")>]
[<assembly: AssemblyDescription("")>]
[<assembly: AssemblyConfiguration("")>]
[<assembly: AssemblyCompany("")>]
[<assembly: AssemblyProduct("basictests")>]
[<assembly: AssemblyCopyright("Copyright © 2018")>]
[<assembly: AssemblyTrademark("")>]
[<assembly: AssemblyCulture("")>]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[<assembly: ComVisible(false)>]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[<assembly: Guid("42cdc11a-1229-4c68-b6df-ef04526a8b5c")>]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [<assembly: AssemblyVersion("1.0.*")>]
[<assembly: AssemblyVersion("1.0.0.0")>]
[<assembly: AssemblyFileVersion("1.0.0.0")>]
[<assembly: AssemblyTitleAttribute("basictests")>]
[<assembly: AssemblyProductAttribute("canopy")>]
[<assembly: AssemblyVersionAttribute("2.1.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2020-03-07T00:00:00.0000000-06:00")>]
[<assembly: AssemblyFileVersionAttribute("2.1.3")>]
[<assembly: AssemblyInformationalVersionAttribute("2.1.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","d4bd2b919c8ab9142ed6bca402415c92d76c5eab")>]
do ()

do
()
module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "basictests"
let [<Literal>] AssemblyProduct = "canopy"
let [<Literal>] AssemblyVersion = "2.1.3"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2020-03-07T00:00:00.0000000-06:00"
let [<Literal>] AssemblyFileVersion = "2.1.3"
let [<Literal>] AssemblyInformationalVersion = "2.1.3"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "d4bd2b919c8ab9142ed6bca402415c92d76c5eab"
58 changes: 20 additions & 38 deletions tests/paralleltests/AssemblyInfo.fs
Original file line number Diff line number Diff line change
@@ -1,41 +1,23 @@
namespace paralleltests.AssemblyInfo

// Auto-Generated by FAKE; do not edit
namespace System
open System.Reflection
open System.Runtime.CompilerServices
open System.Runtime.InteropServices

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[<assembly: AssemblyTitle("paralleltests")>]
[<assembly: AssemblyDescription("")>]
[<assembly: AssemblyConfiguration("")>]
[<assembly: AssemblyCompany("")>]
[<assembly: AssemblyProduct("paralleltests")>]
[<assembly: AssemblyCopyright("Copyright © 2018")>]
[<assembly: AssemblyTrademark("")>]
[<assembly: AssemblyCulture("")>]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[<assembly: ComVisible(false)>]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[<assembly: Guid("e457036b-7783-4c69-8a54-1f7a8a5495bf")>]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [<assembly: AssemblyVersion("1.0.*")>]
[<assembly: AssemblyVersion("1.0.0.0")>]
[<assembly: AssemblyFileVersion("1.0.0.0")>]
[<assembly: AssemblyTitleAttribute("paralleltests")>]
[<assembly: AssemblyProductAttribute("canopy")>]
[<assembly: AssemblyVersionAttribute("2.1.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2020-03-07T00:00:00.0000000-06:00")>]
[<assembly: AssemblyFileVersionAttribute("2.1.3")>]
[<assembly: AssemblyInformationalVersionAttribute("2.1.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","d4bd2b919c8ab9142ed6bca402415c92d76c5eab")>]
do ()

do
()
module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "paralleltests"
let [<Literal>] AssemblyProduct = "canopy"
let [<Literal>] AssemblyVersion = "2.1.3"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2020-03-07T00:00:00.0000000-06:00"
let [<Literal>] AssemblyFileVersion = "2.1.3"
let [<Literal>] AssemblyInformationalVersion = "2.1.3"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "d4bd2b919c8ab9142ed6bca402415c92d76c5eab"

0 comments on commit 2d6e593

Please sign in to comment.