Skip to content

Commit df5a6d3

Browse files
committed
Update Chocolatey script and nuspec for v0.2.0-beta, plus readme updates.
1 parent c21132b commit df5a6d3

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Chocolatey/TSQLFlex.nuspec

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@
44
<metadata>
55
<id>tsqlflex</id>
66
<title>T-SQL Flex</title>
7-
<version>0.1.0-beta</version>
7+
<version>0.2.0-beta</version>
88
<authors>Steve Ognibene</authors>
99
<owners>NYCdotNet</owners>
1010
<summary>SSMS add-in for scripting and Excel export.</summary>
1111
<description>SSMS add-in for scripting and Excel export.</description>
1212
<projectUrl>https://github.com/nycdotnet/TSqlFlex</projectUrl>
1313
<tags>T-SQL Flex SQL Server SSMS</tags>
14-
<copyright>2015</copyright>
14+
<copyright>2016</copyright>
1515
<licenseUrl>https://github.com/nycdotnet/TSqlFlex/blob/master/License.md</licenseUrl>
1616
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1717
<dependencies>
1818
<dependency id="sipfw" version="1.0.3.4" />
1919
</dependencies>
2020
<releaseNotes>
21-
* v0.1.0-beta (2015-05-07):
22-
* Reverted to use .NET 3.5 to restore compatibility with SSMS 2008.
23-
* Added CSV export feature! T-SQL Flex can now export the results of any set of queries to properly-escaped CSV files that open correctly in Excel or any text editor.
24-
* Added a handful of additional T-SQL keywords.
25-
* Removed "This is alpha software" warning. Beta 1 will likely have only minimal further changes prior to the v1.0 release of T-SQL Flex.
26-
</releaseNotes>
21+
* v0.2.0-beta (2016-09-23):
22+
* Implemented new script as C# feature.
23+
* Many behind-the-scenes code improvements.
24+
* Added escaping for several SQL keywords.
25+
* Updated to work with NUnit 3 and RedGate SIP FW 1.0.1.246.
26+
</releaseNotes>
2727
</metadata>
2828
<files>
2929
<file src="tools\**" target="tools" />

Chocolatey/tools/chocolateyInstall.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
$packageName = "T-SQL Flex";
2-
$url = "https://github.com/nycdotnet/TSqlFlex/releases/download/0.1.0-beta/TSqlFlex-v0.1.0-beta.zip";
2+
$url = "https://github.com/nycdotnet/TSqlFlex/releases/download/0.2.0-beta/TSqlFlex-0.2.0-beta.zip";
33
$installLocation = "$env:ProgramData\T-SQL Flex";
44

55
Install-ChocolateyZipPackage "$packageName" "$url" "$installLocation"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ Please either create issues on GitHub, or reach out to Steve on Twitter at [@nyc
5454
* Quit SSMS.
5555
* edit .nuspec with version and patch notes.
5656
* edit chocolateyInstall.ps1 with new GitHub release URL.
57-
* Run from admin powershell:
57+
* Run from admin powershell (under TSqlFlex\Chocolatey):
5858
* `cpack`
59-
* `cinst tsqlflex -source %cd% -pre` ( use `-force` if already installed)
59+
* `cinst tsqlflex -source $pwd -pre` ( use `-force` if already installed)
6060
* `cuninst tsqlflex`
6161
* `cpush tsqlflex.VERSION_NUMBER.nupkg` (you can type `cpush .\t<tab>`)
6262

0 commit comments

Comments
 (0)