Skip to content

Commit

Permalink
Merge pull request #29 from drwatson1/net7
Browse files Browse the repository at this point in the history
Support Net7
  • Loading branch information
drwatson1 authored Jan 18, 2023
2 parents d0d25d9 + 431f334 commit ce03738
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,12 @@ The tool has almost all the features the DbUp has, but without a single line of

|Date|Version|Description|
|-|-|-|
|2023-01-18|1.8.0|Add support of .Net 7.0
|2022-06-11|1.7.0|Add support of CockroachDB, thanks to @lbguilherme
|2022-05-10|1.6.6|Add support of .Net 6
|2022-02-14|1.6.5|Support of DisableVars
|2022-02-06|1.6.4|Support of drop and ensure for Azure SQL
|2022-02-02|1.6.3|Support of AzureSQL integrated sequrity
|2022-02-02|1.6.3|Support of AzureSQL integrated security
|2022-01-30|1.6.2|PostgreSQL SCRAM authentication support interim fix
|2022-01-29|1.6.1|BUGFIX: 'version' and '--version' should return exit code 0
|2021-10-03|1.6.0|Add a 'journalTo' option to dbup.yml
Expand Down
2 changes: 1 addition & 1 deletion src/dbup-cli/How-to-create-a-new-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Pack the utility to a single exe-file: go to the `build` folder and run `PackDbUp.cmd`. See the `build/readme.md` for additional instructions
1. Update Release Notes on the project main [README](https://github.com/drwatson1/dbup-cli/blob/master/README.md) page.
1. Update Wiki-pages if needed
1. Publish NuGet-package. Dont't remember to add additional documentation from the main [README](https://github.com/drwatson1/dbup-cli/blob/master/README.md) page.
1. Publish NuGet-package. Don't remember to add additional documentation from the main [README](https://github.com/drwatson1/dbup-cli/blob/master/README.md) page.
1. Commit and push all changes
1. Merge the branch to the master
1. Create a new release on GitHub. Don't remember to add the standalone utility for .NetFramework 4.6.2 from `build` folder and the NuGet-package
8 changes: 4 additions & 4 deletions src/dbup-cli/dbup-cli.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup Condition="'$(GlobalTool)' != false">
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
<PackAsTool>true</PackAsTool>
</PropertyGroup>

Expand All @@ -18,17 +18,17 @@
<LangVersion>latest</LangVersion>
<Product>DbUp Command Line Interface</Product>
<Authors>Sergey Tregub</Authors>
<Version>1.7.0</Version>
<Version>1.8.0</Version>
<RepositoryUrl>https://github.com/drwatson1/dbup-cli</RepositoryUrl>
<Company />
<Copyright>Copyright (c) 2022 Sergey Tregub</Copyright>
<Copyright>Copyright (c) 2023 Sergey Tregub</Copyright>
<PackageProjectUrl>https://github.com/drwatson1/dbup-cli</PackageProjectUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>dbup database migration sqlserver postgresql mysql cockroachdb</PackageTags>
<PackAsTool>true</PackAsTool>
<ToolCommandName>dbup</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageReleaseNotes>CockroachDB support, thanks to @lbguilherme</PackageReleaseNotes>
<PackageReleaseNotes>Support .Net 7.0</PackageReleaseNotes>
<Title>DbUp Command Line Interface</Title>
<Description>Command line tool, that can be installed as a .Net global tool, that helps you to deploy changes to databases. It tracks which SQL scripts have been run already, and runs the change scripts that are needed to get your database up to date.</Description>
<PackageLicenseUrl></PackageLicenseUrl>
Expand Down

0 comments on commit ce03738

Please sign in to comment.