Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release_notes update, 6.4.1 #1517

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Setup .NET Core 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.425
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
Expand Down
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 6.4.1 - Oct 2 2024
- WorldBank URL fixed to https @pkese
- Updated Fake and Paket @Thorium
- Tests project to .NET8 @Thorium

## 6.4.0 - Mar 12 2024

- Update FSharp.Core to 6.0.1 by @Thorium
Expand Down
2 changes: 1 addition & 1 deletion docs/library/JsonProvider.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ unit if the sample contains other values...
## Loading WorldBank data

Now let's use the type provider to process some real data. We use a data set returned by
[the WorldBank](http://data.worldbank.org), which has (roughly) the following structure:
[the WorldBank](https://data.worldbank.org), which has (roughly) the following structure:

[lang=js]
[ { "page": 1, "pages": 1, "total": 53 },
Expand Down
4 changes: 2 additions & 2 deletions docs/library/WorldBank.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ Formatter.Register(fun (x: obj) (writer: TextWriter) -> fprintfn writer "%120A"

# WorldBank Provider

The [World Bank](http://www.worldbank.org) is an international organization that provides
The [World Bank](https://www.worldbank.org) is an international organization that provides
financial and technical assistance to developing countries around the world. As one of the
activities, the World Bank also collects development indicators and other data about
countries in the world. The [data catalog](http://data.worldbank.org/) contains over
countries in the world. The [data catalog](https://data.worldbank.org/) contains over
8,000 indicators that can be programmatically accessed.

The WorldBank Type Provider makes the WorldBank data easily accessible to F# programs and
Expand Down
4 changes: 2 additions & 2 deletions src/FSharp.Data.DesignTime/WorldBank/WorldBankProvider.fs
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ type public WorldBankProvider(cfg: TypeProviderConfig) as this =

let worldBankType =
createTypesForSources (defaultSources, "WorldBankData", false, false)
//do worldBankType.AddXmlDoc "<summary>Typed representation of WorldBank data. See http://www.worldbank.org for terms and conditions.</summary>"
//do worldBankType.AddXmlDoc "<summary>Typed representation of WorldBank data. See https://www.worldbank.org for terms and conditions.</summary>"

let paramWorldBankType =
let t =
Expand All @@ -353,7 +353,7 @@ type public WorldBankProvider(cfg: TypeProviderConfig) as this =
let defaultSourcesStr = String.Join(";", defaultSources)

let helpText =
"<summary>Typed representation of WorldBank data with additional configuration parameters. See http://www.worldbank.org for terms and conditions.</summary>
"<summary>Typed representation of WorldBank data with additional configuration parameters. See https://www.worldbank.org for terms and conditions.</summary>
<param name='Sources'>The World Bank data sources to include, separated by semicolons. Defaults to <c>"
+ defaultSourcesStr
+ "</c>.
Expand Down
Loading