Skip to content

Commit

Permalink
feat: update github actions to last dotnet ver
Browse files Browse the repository at this point in the history
  • Loading branch information
Natalie Perret committed Nov 25, 2024
1 parent 28fcd5d commit 37a265c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-fsharplint": {
"version": "0.21.2",
"version": "0.24.2",
"commands": [
"dotnet-fsharplint"
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup .NET Environment
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.400
dotnet-version: 9.0.100
- name: Restore .NET Tools
run: dotnet tool restore --tool-manifest ./.config/dotnet-tools.json
- name: Restore .NET Projects
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-release-tag-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup .NET Environment
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.400
dotnet-version: 9.0.100
source-url: https://api.nuget.org/v3/index.json
env:
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ If you just want to execute SQL commands a-la-F#, you might want to look at [thi

We follow "highly controversial practices" to the best of our ability!

Status | Package
---------- | ----------------------
OK | [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-green.svg)](https://conventionalcommits.org)
OK (sorta) | [![semver](https://img.shields.io/badge/semver-2.0.0-green)](https://semver.org/spec/v2.0.0.html)
TBD | [![keep a changelog](https://img.shields.io/badge/keep%20a%20changelog-1.0.0-red)](https://keepachangelog.com/en/1.0.0)
TBD | [![Semantic Release](https://img.shields.io/badge/Semantic%20Release-17.1.1-red)](https://semantic-release.gitbook.io/semantic-release)
| Status | Package |
|------------|-----------------------------------------------------------------------------------------------------------------------------------------|
| OK | [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-green.svg)](https://conventionalcommits.org) |
| OK (sorta) | [![semver](https://img.shields.io/badge/semver-2.0.0-green)](https://semver.org/spec/v2.0.0.html) |
| TBD | [![keep a changelog](https://img.shields.io/badge/keep%20a%20changelog-1.0.0-red)](https://keepachangelog.com/en/1.0.0) |
| TBD | [![Semantic Release](https://img.shields.io/badge/Semantic%20Release-17.1.1-red)](https://semantic-release.gitbook.io/semantic-release) |

[Conventional Commits]: https://conventionalcommits.org
[semver]: https://img.shields.io/badge/semver-2.0.0-blue
Expand All @@ -34,11 +34,11 @@ This library mostly aims to be a foundation for building other libraries with th

You can check out the libraries below, each leveraging `Vp.FSharp.Sql` and the relevant ADO.NET provider:

Name | ADO.NET Provider | Version | Command |
--------------------------------------------- | -------------------------------------------------------------------------------------- | -------- | ------- |
[`Vp.FSharp.Sql.Sqlite`][sqlite-repo] | [`System.Data.SQLite.Core`](https://www.nuget.org/packages/System.Data.SQLite.Core) | [![NuGet Status](http://img.shields.io/nuget/v/Vp.FSharp.Sql.Sqlite.svg)](https://www.nuget.org/packages/Vp.FSharp.Sql.Sqlite) | `Install-Package Vp.FSharp.Sql.Sqlite`
[`Vp.FSharp.Sql.SqlServer`][sqlserver-repo] | [`Microsoft.Data.SqlClient`](https://www.nuget.org/packages/Microsoft.Data.SqlClient) | [![NuGet Status](http://img.shields.io/nuget/v/Vp.FSharp.Sql.SqlServer.svg)](https://www.nuget.org/packages/Vp.FSharp.Sql.SqlServer) | `Install-Package Vp.FSharp.Sql.SqlServer`
[`Vp.FSharp.Sql.PostgreSql`][postgresql-repo] | [`Npgsql`](https://www.nuget.org/packages/Npgsql) | [![NuGet Status](http://img.shields.io/nuget/v/Vp.FSharp.Sql.PostgreSql.svg)](https://www.nuget.org/packages/Vp.FSharp.Sql.PostgreSql) | `Install-Package Vp.FSharp.Sql.PostgreSql`
| Name | ADO.NET Provider | Version | Command |
|------------------------------------------------|---------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------|
| [`Vp.FSharp.Sql.Sqlite`][sqlite-repo] | [`System.Data.SQLite.Core`](https://www.nuget.org/packages/System.Data.SQLite.Core) | [![NuGet Status](http://img.shields.io/nuget/v/Vp.FSharp.Sql.Sqlite.svg)](https://www.nuget.org/packages/Vp.FSharp.Sql.Sqlite) | `Install-Package Vp.FSharp.Sql.Sqlite` |
| [`Vp.FSharp.Sql.SqlServer`][sqlserver-repo] | [`Microsoft.Data.SqlClient`](https://www.nuget.org/packages/Microsoft.Data.SqlClient) | [![NuGet Status](http://img.shields.io/nuget/v/Vp.FSharp.Sql.SqlServer.svg)](https://www.nuget.org/packages/Vp.FSharp.Sql.SqlServer) | `Install-Package Vp.FSharp.Sql.SqlServer` |
| [`Vp.FSharp.Sql.PostgresSql`][postgresql-repo] | [`Npgsql`](https://www.nuget.org/packages/Npgsql) | [![NuGet Status](http://img.shields.io/nuget/v/Vp.FSharp.Sql.PostgreSql.svg)](https://www.nuget.org/packages/Vp.FSharp.Sql.PostgreSql) | `Install-Package Vp.FSharp.Sql.PostgreSql` |

In a nutshell, you can create your own complete provider, but you're free to just go with only the things you need.

Expand Down

0 comments on commit 37a265c

Please sign in to comment.