From 13ee55650ffb7614838b963167328275f887c17d Mon Sep 17 00:00:00 2001 From: Oskar Gewalli Date: Sun, 4 Feb 2018 11:52:01 +0100 Subject: [PATCH] Changes done by @dsyme in paket update pull request --- README.md | 4 ++-- RELEASE_NOTES.md | 6 +++--- src/FSharp.MetadataFormat/Main.fs | 4 ++-- tests/FSharp.MetadataFormat.Tests/Tests.fs | 16 ++++++++-------- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index d9218af82..bd8db22fa 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -F# Formatting [![Build Status](https://travis-ci.org/tpetricek/FSharp.Formatting.png?branch=master)](https://travis-ci.org/tpetricek/FSharp.Formatting) +F# Formatting [![Build Status](https://travis-ci.org/fsprojects/FSharp.Formatting.svg?branch=master)](https://travis-ci.org/fsprojects/FSharp.Formatting) ================================= -[![Join the chat at https://gitter.im/tpetricek/FSharp.Formatting](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/tpetricek/FSharp.Formatting?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![Join the chat at https://gitter.im/fsprojects/FSharp.Formatting](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/fsprojects/FSharp.Formatting?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) The F# Formatting libraries (`FSharp.CodeFormat.dll` and `FSharp.Markdown.dll`) include an F# implementation of a Markdown parser and an F# code formatter that can be used to tokenize F# code and obtain information about tokens diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 8d392cab6..58a064c26 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -19,9 +19,9 @@ ## 3.0.0-beta02 (26 May, 2017) - MarkdownSpan and MarkdownParagraph now use named DUs - - Add range to MarkdownParagraph and MarkdownSpan (https://github.com/tpetricek/FSharp.Formatting/pull/411) - - FSharp.Formatting no longer has a strong dependency on Razor (https://github.com/tpetricek/FSharp.Formatting/pull/425) - - FSharp.Formatting no longer depends on VFPT.Core (https://github.com/tpetricek/FSharp.Formatting/pull/432) + - Add range to MarkdownParagraph and MarkdownSpan (https://github.com/fsprojects/FSharp.Formatting/pull/411) + - FSharp.Formatting no longer has a strong dependency on Razor (https://github.com/fsprojects/FSharp.Formatting/pull/425) + - FSharp.Formatting no longer depends on VFPT.Core (https://github.com/fsprojects/FSharp.Formatting/pull/432) - Add beta packages to AppVeyor feed. - Update FSharp.Compiler.Service component. diff --git a/src/FSharp.MetadataFormat/Main.fs b/src/FSharp.MetadataFormat/Main.fs index 41e8329e7..51e24071b 100755 --- a/src/FSharp.MetadataFormat/Main.fs +++ b/src/FSharp.MetadataFormat/Main.fs @@ -1144,8 +1144,8 @@ module Reader = // are completely identical. // We just take the last here because it is the easiest to implement. // Additionally we log a warning just in case this is an issue in the future. - // See https://github.com/tpetricek/FSharp.Formatting/issues/229 - // and https://github.com/tpetricek/FSharp.Formatting/issues/287 + // See https://github.com/fsprojects/FSharp.Formatting/issues/229 + // and https://github.com/fsprojects/FSharp.Formatting/issues/287 if xmlMemberMap.ContainsKey key then Log.warnf "Duplicate documentation for '%s', one will be ignored!" key xmlMemberMap.[key] <- value diff --git a/tests/FSharp.MetadataFormat.Tests/Tests.fs b/tests/FSharp.MetadataFormat.Tests/Tests.fs index 8919a2a91..83df8ae11 100755 --- a/tests/FSharp.MetadataFormat.Tests/Tests.fs +++ b/tests/FSharp.MetadataFormat.Tests/Tests.fs @@ -171,16 +171,16 @@ let ``MetadataFormat generates Go to GitHub source links``() = printfn "Output: %s" output RazorMetadataFormat.Generate ( libraries, output, layoutRoots, info, libDirs = ([testBin] |> fullpaths), - sourceRepo = "https://github.com/tpetricek/FSharp.Formatting/tree/master", + sourceRepo = "https://github.com/fsprojects/FSharp.Formatting/tree/master", sourceFolder = (root "../..") ) let fileNames = Directory.GetFiles(output) let files = dict [ for f in fileNames -> Path.GetFileName(f), File.ReadAllText(f) ] files.["fslib-class.html"] |> shouldContainText "github-link" - files.["fslib-class.html"] |> shouldContainText "https://github.com/tpetricek/FSharp.Formatting/tree/master/tests/FSharp.MetadataFormat.Tests/files/FsLib/Library2.fs#L" + files.["fslib-class.html"] |> shouldContainText "https://github.com/fsprojects/FSharp.Formatting/tree/master/tests/FSharp.MetadataFormat.Tests/files/FsLib/Library2.fs#L" files.["fslib-record.html"] |> shouldContainText "github-link" - files.["fslib-record.html"] |> shouldContainText "https://github.com/tpetricek/FSharp.Formatting/tree/master/tests/FSharp.MetadataFormat.Tests/files/FsLib/Library1.fs#L" + files.["fslib-record.html"] |> shouldContainText "https://github.com/fsprojects/FSharp.Formatting/tree/master/tests/FSharp.MetadataFormat.Tests/files/FsLib/Library1.fs#L" files.["fslib-union.html"] |> shouldContainText "github-link" - files.["fslib-union.html"] |> shouldContainText "https://github.com/tpetricek/FSharp.Formatting/tree/master/tests/FSharp.MetadataFormat.Tests/files/FsLib/Library1.fs#L" + files.["fslib-union.html"] |> shouldContainText "https://github.com/fsprojects/FSharp.Formatting/tree/master/tests/FSharp.MetadataFormat.Tests/files/FsLib/Library1.fs#L" //#if INTERACTIVE //System.Diagnostics.Process.Start(output) @@ -197,7 +197,7 @@ let ``MetadataFormat test that cref generation works``() = printfn "Output: %s" output RazorMetadataFormat.Generate ( libraries, output, layoutRoots, info, libDirs = ([testBin] |> fullpaths), - sourceRepo = "https://github.com/tpetricek/FSharp.Formatting/tree/master", + sourceRepo = "https://github.com/fsprojects/FSharp.Formatting/tree/master", sourceFolder = (__SOURCE_DIRECTORY__ "../.."), markDownComments = false ) let fileNames = Directory.GetFiles(output) @@ -267,7 +267,7 @@ let ``MetadataFormat test that csharp (publiconly) support works``() = printfn "Output: %s" output RazorMetadataFormat.Generate ( libraries, output, layoutRoots, info, libDirs = ([testBin] |> fullpaths), - sourceRepo = "https://github.com/tpetricek/FSharp.Formatting/tree/master", + sourceRepo = "https://github.com/fsprojects/FSharp.Formatting/tree/master", sourceFolder = (__SOURCE_DIRECTORY__ "../.."), publicOnly = true, markDownComments = false ) @@ -312,7 +312,7 @@ let ``MetadataFormat test that csharp (publiconly) support works``() = //#endif -[] +[] [] let ``MetadataFormat test that csharp support works``() = let libraries = @@ -321,7 +321,7 @@ let ``MetadataFormat test that csharp support works``() = printfn "Output: %s" output RazorMetadataFormat.Generate ( libraries, output, layoutRoots, info, libDirs = ([testBin] |> fullpaths), - sourceRepo = "https://github.com/tpetricek/FSharp.Formatting/tree/master", + sourceRepo = "https://github.com/fsprojects/FSharp.Formatting/tree/master", sourceFolder = (__SOURCE_DIRECTORY__ "../.."), publicOnly = false, markDownComments = false )