Commit 710e86fe authored by Nick Craver's avatar Nick Craver

1.50.4 release

parent 46dffa84
...@@ -30,7 +30,12 @@ function CalculateVersion() { ...@@ -30,7 +30,12 @@ function CalculateVersion() {
Exit 1 Exit 1
} }
return "$semVersion-$BuildNumber" if ($semVersion -contains "-") {
return "$semVersion-$BuildNumber" #prerelease
} else {
return "$semVersion" #release
}
} }
if ($BuildNumber -and $BuildNumber.Length -lt 5) { if ($BuildNumber -and $BuildNumber.Length -lt 5) {
......
...@@ -22,6 +22,11 @@ Note: to get the latest pre-release build, add ` -Pre` to the end of the command ...@@ -22,6 +22,11 @@ Note: to get the latest pre-release build, add ` -Pre` to the end of the command
## Release Notes ## Release Notes
### 1.50.4
- Added back missing .NET Standard functionality (restored in `netstandard2.0`)
- Bumped `SqlClient` dependency to 4.4.0 (to help propagate the newer client)
### 1.50.2 ### 1.50.2
- fix issue 569 (`in` expansions using ODBC pseudo-positional arguments) - fix issue 569 (`in` expansions using ODBC pseudo-positional arguments)
......
1.50.5-alpha1 1.50.4
\ No newline at end of file \ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment