Skip to content

Commit f8e43db

Browse files
committed
Prepare for package release as 1.0.0.
1 parent 63d8f3d commit f8e43db

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
## [Unreleased]
44

5-
## [0.13.0] - 2026-XX-XX
5+
## [1.0.0] - 2026-XX-XX
66

77
The Rip Van Winkle release.
88

9-
Rezoom.SQL was dormant from 2020 until this work; 0.13.0 brings it to the 2026 .NET ecosystem. There are breaking changes for anyone upgrading from 0.6.x, which is unlikely due to the
9+
Rezoom.SQL was dormant from 2020 until this work; 1.0.0 brings it to the 2026 .NET ecosystem. There are breaking changes for anyone upgrading from 0.6.x, which is unlikely due to the
1010
long dead time and small userbase in the first place. However, on the unlikely chance somebody *does* have a legacy project on an old disk somewhere, the changes should be straightforward to make:
1111

1212
- Change your app.config to an AppSettings.json
@@ -53,5 +53,5 @@ Updating the type provider to work on .NET Standard was based off work originall
5353

5454
Last release before the NET 10 revamp. See git history for changes prior to this.
5555

56-
[Unreleased]: https://github.com/rspeele/Rezoom.SQL/compare/v0.13.0...HEAD
57-
[0.13.0]: https://github.com/rspeele/Rezoom.SQL/compare/v0.6.2...v0.13.0
56+
[Unreleased]: https://github.com/rspeele/Rezoom.SQL/compare/v1.0.0...HEAD
57+
[1.0.0]: https://github.com/rspeele/Rezoom.SQL/compare/v0.6.2...v1.0.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Tutorial & full documentation](https://humbobst.gitbook.io/rezoom-sql/doc/Tutorial/)
22

3-
[Query playground -- try out the SQL dialect live!](http://rzsql.com/#52632EC5A298CFFFD652D53C03DD1318A9DACA3C)
3+
[Query playground -- try out the SQL dialect live!](https://rzsql.com/#1F854F9945C2061389778AE5DB98238E21D3A62B)
44

55
# Statically typed SQL for F# #
66

@@ -43,7 +43,7 @@ langages. There is even an option to represent nullable types with C#-style
4343
extra smoothly.
4444

4545
Check out the [query
46-
playground](http://rzsql.com/#52632EC5A298CFFFD652D53C03DD1318A9DACA3C) to see
46+
playground](https://rzsql.com/#1F854F9945C2061389778AE5DB98238E21D3A62B) to see
4747
what kinds of SQL you can write.
4848

4949
## The productivity of static typing

src/Rezoom.SQL.Compiler/Rezoom.SQL.Compiler.fsproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<PackageLicenseExpression>MIT</PackageLicenseExpression>
88
<PackageProjectUrl>https://github.com/rspeele/Rezoom.SQL</PackageProjectUrl>
99
<RepositoryUrl>https://github.com/rspeele/Rezoom.SQL</RepositoryUrl>
10-
<PackageReleaseNotes>0.13.0: ConnectionProvider returns to its minimal abstract shape (Open / BeginTransaction). ConnectionInfo and configuration concerns move to ConfigurationConnectionProvider. Commands now carry their compile-time dialect as a typed Backend DU (RzSQL / SQLite / TSQL / Postgres) rather than a string, parsed at the rzsql.json boundary and threaded through everywhere else. Breaking change for custom ConnectionProvider subclasses: Open now takes (connectionName : string, backend : Backend).</PackageReleaseNotes>
10+
<PackageReleaseNotes>1.0.0: ConnectionProvider returns to its minimal abstract shape (Open / BeginTransaction). ConnectionInfo and configuration concerns move to ConfigurationConnectionProvider. Commands now carry their compile-time dialect as a typed Backend DU (RzSQL / SQLite / TSQL / Postgres) rather than a string, parsed at the rzsql.json boundary and threaded through everywhere else. Breaking change for custom ConnectionProvider subclasses: Open now takes (connectionName : string, backend : Backend). See CHANGELOG.md for the full 1.0.0 story.</PackageReleaseNotes>
1111
<PackageReadmeFile>README.md</PackageReadmeFile>
1212
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
1313
</PropertyGroup>
@@ -64,8 +64,8 @@
6464

6565
<ItemGroup>
6666
<PackageReference Include="FSharp.Core" Version="8.0.401" />
67-
<PackageReference Include="FParsec-Pipes" Version="1.2.0" />
68-
<PackageReference Include="Rezoom" Version="1.4.0" />
67+
<PackageReference Include="FParsec-Pipes" Version="1.3.0" />
68+
<PackageReference Include="Rezoom" Version="2.0.0" />
6969
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" />
7070
</ItemGroup>
7171

src/Rezoom.SQL.Mapping/Rezoom.SQL.Mapping.fsproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<PackageLicenseExpression>MIT</PackageLicenseExpression>
88
<PackageProjectUrl>https://github.com/rspeele/Rezoom.SQL</PackageProjectUrl>
99
<RepositoryUrl>https://github.com/rspeele/Rezoom.SQL</RepositoryUrl>
10-
<PackageReleaseNotes>Modernize: multi-target netstandard2.0 / net8.0 / net10.0. Drop TaskBuilder.fs which is no longer needed. Modernize configuration to IConfiguration instead of old ConfigurationManager, simplify config.</PackageReleaseNotes>
10+
<PackageReleaseNotes>1.0.0: multi-target netstandard2.0 / net8.0 / net10.0. Drop TaskBuilder.fs. Modernize configuration to IConfiguration instead of the old ConfigurationManager. See the Rezoom.SQL CHANGELOG.md for the full 1.0.0 story.</PackageReleaseNotes>
1111
<PackageReadmeFile>README.md</PackageReadmeFile>
1212
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
1313
</PropertyGroup>
@@ -55,8 +55,8 @@
5555

5656
<ItemGroup>
5757
<PackageReference Include="FSharp.Core" Version="8.0.401" />
58-
<PackageReference Include="LicenseToCIL" Version="1.1.0" />
59-
<PackageReference Include="Rezoom" Version="1.4.0" />
58+
<PackageReference Include="LicenseToCIL" Version="1.2.0" />
59+
<PackageReference Include="Rezoom" Version="2.0.0" />
6060
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
6161
</ItemGroup>
6262

src/Rezoom.SQL.Provider/Rezoom.SQL.Provider.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1010
<PackageProjectUrl>https://github.com/rspeele/Rezoom.SQL</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/rspeele/Rezoom.SQL</RepositoryUrl>
12-
<PackageReleaseNotes>Modernize: bump FSharp.Core; track modernized Rezoom.SQL.Compiler / Mapping. ALC-aware assembly resolution for .NET 8+ TP loading. See the Rezoom.SQL 0.13.0 release notes for the full story.</PackageReleaseNotes>
12+
<PackageReleaseNotes>1.0.0: ALC-aware assembly resolution for .NET 8+ TP loading. Tracks modernized Rezoom.SQL.Compiler / Mapping. See the Rezoom.SQL CHANGELOG.md for the full 1.0.0 story.</PackageReleaseNotes>
1313
<PackageReadmeFile>README.md</PackageReadmeFile>
1414
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
1515
</PropertyGroup>

version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
into version.local.props (gitignored). The combined version then looks
1010
like 0.13.0-dev.5 until the next release.
1111
-->
12-
<RezoomSqlVersion>0.13.0</RezoomSqlVersion>
12+
<RezoomSqlVersion>1.0.0</RezoomSqlVersion>
1313
</PropertyGroup>
1414
</Project>

0 commit comments

Comments
 (0)