Skip to content

Commit

Permalink
Update to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lefthandedgoat committed Oct 24, 2019
1 parent fc048ba commit 1bce9ed
Show file tree
Hide file tree
Showing 6 changed files with 264 additions and 78 deletions.
300 changes: 241 additions & 59 deletions .paket/Paket.Restore.targets

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions Build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,19 +228,19 @@ Target "All" DoNothing
"Clean"
==> "AssemblyInfo"
==> "Build"
==> "RunTests"
// ==> "RunTests"
==> "All"

"CleanDocs"
==> "GenerateDocs"
==> "ReleaseDocs"

"All"
//==> "CleanDocs"
//==> "GenerateDocs"
//==> "ReleaseDocs"
==> "NuGet"
==> "NuGet.Integration"
==> "CleanDocs"
==> "GenerateDocs"
==> "ReleaseDocs"
//==> "NuGet"
//==> "NuGet.Integration"
==> "Release"

RunTargetOrDefault "All"
6 changes: 5 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,4 +400,8 @@ Update to Selenium 3.3 [Issue #351](https://github.com/lefthandedgoat/canopy/iss
* Please read upgrade documentation http://lefthandedgoat.github.io/canopy/upgrade1to2.html

#### 2.0.1 - April 21 2018
* Fixed a bug in waitForElement function signature, thanks draganjovanovic!! [PR #428](https://github.com/lefthandedgoat/canopy/pull/428)
* Fixed a bug in waitForElement function signature, thanks draganjovanovic!! [PR #428](https://github.com/lefthandedgoat/canopy/pull/428)

#### 2.1.1 - October 23 2019
* Added option to select WebDriver port and allow insecure SSL cert
* Thanks @OmanF (https://github.com/lefthandedgoat/canopy/pull/482)
8 changes: 4 additions & 4 deletions src/canopy.integration/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("canopy.integration")>]
[<assembly: AssemblyProductAttribute("canopy.integration")>]
[<assembly: AssemblyDescriptionAttribute("F# web testing framework")>]
[<assembly: AssemblyVersionAttribute("2.0.0")>]
[<assembly: AssemblyFileVersionAttribute("2.0.0")>]
[<assembly: AssemblyVersionAttribute("2.1.1")>]
[<assembly: AssemblyFileVersionAttribute("2.1.1")>]
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.0.0"
let [<Literal>] AssemblyFileVersion = "2.0.0"
let [<Literal>] AssemblyVersion = "2.1.1"
let [<Literal>] AssemblyFileVersion = "2.1.1"
9 changes: 4 additions & 5 deletions src/canopy/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("canopy")>]
[<assembly: AssemblyProductAttribute("canopy")>]
[<assembly: AssemblyDescriptionAttribute("F# web testing framework")>]
[<assembly: AssemblyVersionAttribute("2.0.0")>]
[<assembly: AssemblyFileVersionAttribute("2.0.0")>]

[<assembly: AssemblyVersionAttribute("2.1.1")>]
[<assembly: AssemblyFileVersionAttribute("2.1.1")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "canopy"
let [<Literal>] AssemblyProduct = "canopy"
let [<Literal>] AssemblyDescription = "F# web testing framework"
let [<Literal>] AssemblyVersion = "2.0.0"
let [<Literal>] AssemblyFileVersion = "2.0.0"
let [<Literal>] AssemblyVersion = "2.1.1"
let [<Literal>] AssemblyFileVersion = "2.1.1"
7 changes: 4 additions & 3 deletions src/canopy/canopy.paket.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ type file
id
canopy
version
2.1.0
2.1.1
authors
Chris Holt
iconUrl
Expand All @@ -21,8 +21,9 @@ files
bin\Debug\netstandard2.0 ==> lib\netstandard2.0

releaseNotes
2.1.0 - September 9 2018
Fixed some small bugs
2.1.1 - October 23 2019
Added option to select WebDriver port and allow insecure SSL cert
Thanks @OmanF (https://github.com/lefthandedgoat/canopy/pull/482)

dependencies
framework: netstandard2.0
Expand Down

0 comments on commit 1bce9ed

Please sign in to comment.