Skip to content

Commit ce03738

Browse files
authored
Merge pull request #29 from drwatson1/net7
Support Net7
2 parents d0d25d9 + 431f334 commit ce03738

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,12 @@ The tool has almost all the features the DbUp has, but without a single line of
6060

6161
|Date|Version|Description|
6262
|-|-|-|
63+
|2023-01-18|1.8.0|Add support of .Net 7.0
6364
|2022-06-11|1.7.0|Add support of CockroachDB, thanks to @lbguilherme
6465
|2022-05-10|1.6.6|Add support of .Net 6
6566
|2022-02-14|1.6.5|Support of DisableVars
6667
|2022-02-06|1.6.4|Support of drop and ensure for Azure SQL
67-
|2022-02-02|1.6.3|Support of AzureSQL integrated sequrity
68+
|2022-02-02|1.6.3|Support of AzureSQL integrated security
6869
|2022-01-30|1.6.2|PostgreSQL SCRAM authentication support interim fix
6970
|2022-01-29|1.6.1|BUGFIX: 'version' and '--version' should return exit code 0
7071
|2021-10-03|1.6.0|Add a 'journalTo' option to dbup.yml

src/dbup-cli/How-to-create-a-new-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* 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
1212
1. Update Release Notes on the project main [README](https://github.com/drwatson1/dbup-cli/blob/master/README.md) page.
1313
1. Update Wiki-pages if needed
14-
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.
14+
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.
1515
1. Commit and push all changes
1616
1. Merge the branch to the master
1717
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

src/dbup-cli/dbup-cli.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup Condition="'$(GlobalTool)' != false">
4-
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
55
<PackAsTool>true</PackAsTool>
66
</PropertyGroup>
77

@@ -18,17 +18,17 @@
1818
<LangVersion>latest</LangVersion>
1919
<Product>DbUp Command Line Interface</Product>
2020
<Authors>Sergey Tregub</Authors>
21-
<Version>1.7.0</Version>
21+
<Version>1.8.0</Version>
2222
<RepositoryUrl>https://github.com/drwatson1/dbup-cli</RepositoryUrl>
2323
<Company />
24-
<Copyright>Copyright (c) 2022 Sergey Tregub</Copyright>
24+
<Copyright>Copyright (c) 2023 Sergey Tregub</Copyright>
2525
<PackageProjectUrl>https://github.com/drwatson1/dbup-cli</PackageProjectUrl>
2626
<RepositoryType>GitHub</RepositoryType>
2727
<PackageTags>dbup database migration sqlserver postgresql mysql cockroachdb</PackageTags>
2828
<PackAsTool>true</PackAsTool>
2929
<ToolCommandName>dbup</ToolCommandName>
3030
<PackageOutputPath>./nupkg</PackageOutputPath>
31-
<PackageReleaseNotes>CockroachDB support, thanks to @lbguilherme</PackageReleaseNotes>
31+
<PackageReleaseNotes>Support .Net 7.0</PackageReleaseNotes>
3232
<Title>DbUp Command Line Interface</Title>
3333
<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>
3434
<PackageLicenseUrl></PackageLicenseUrl>

0 commit comments

Comments
 (0)