Skip to content

Commit d1afc7d

Browse files
committed
Version 1.2.0
1 parent d30ed5e commit d1afc7d

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

ps1/New-Release.ps1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ rm $zipFilePath -ErrorAction SilentlyContinue
6363
rm "$relDir\SqlNotebook.wixobj" -ErrorAction SilentlyContinue
6464
rm "$relDir\SqlNotebook.wxs" -ErrorAction SilentlyContinue
6565

66-
& $signtool sign /n "Brian Luft" /tr http://timestamp.digicert.com /fd SHA256 /td SHA256 "$relDir\sqlite3.dll" | Write-Output
67-
& $signtool sign /n "Brian Luft" /tr http://timestamp.digicert.com /fd SHA256 /td SHA256 "$relDir\crypto.dll" | Write-Output
68-
& $signtool sign /n "Brian Luft" /tr http://timestamp.digicert.com /fd SHA256 /td SHA256 "$relDir\fuzzy.dll" | Write-Output
69-
& $signtool sign /n "Brian Luft" /tr http://timestamp.digicert.com /fd SHA256 /td SHA256 "$relDir\stats.dll" | Write-Output
70-
& $signtool sign /n "Brian Luft" /tr http://timestamp.digicert.com /fd SHA256 /td SHA256 "$relDir\SqlNotebook.exe" | Write-Output
66+
& $signtool sign /n "Brian Luft" /tr http://timestamp.sectigo.com /fd SHA256 /td SHA256 "$relDir\sqlite3.dll" | Write-Output
67+
& $signtool sign /n "Brian Luft" /tr http://timestamp.sectigo.com /fd SHA256 /td SHA256 "$relDir\crypto.dll" | Write-Output
68+
& $signtool sign /n "Brian Luft" /tr http://timestamp.sectigo.com /fd SHA256 /td SHA256 "$relDir\fuzzy.dll" | Write-Output
69+
& $signtool sign /n "Brian Luft" /tr http://timestamp.sectigo.com /fd SHA256 /td SHA256 "$relDir\stats.dll" | Write-Output
70+
& $signtool sign /n "Brian Luft" /tr http://timestamp.sectigo.com /fd SHA256 /td SHA256 "$relDir\SqlNotebook.exe" | Write-Output
7171
Copy-Item -Force "$srcdir\SqlNotebook\SqlNotebookIcon.ico" "$relDir\SqlNotebookIcon.ico"
7272

7373
#
@@ -116,6 +116,6 @@ if (-not (Test-Path "$relDir\SqlNotebook.msi")) {
116116

117117
Move-Item -Force "$relDir\SqlNotebook.msi" $msiFilePath
118118

119-
& $signtool sign /n "Brian Luft" /tr http://timestamp.digicert.com /fd SHA256 /td SHA256 /d $msiFilename $msiFilePath | Write-Output
119+
& $signtool sign /n "Brian Luft" /tr http://timestamp.sectigo.com /fd SHA256 /td SHA256 /d $msiFilename $msiFilePath | Write-Output
120120

121121
Pop-Location

src/SqlNotebook.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<?define ProductVersion = "1.1.0"?>
2+
<?define ProductVersion = "1.2.0"?>
33
<?define ProductUpgradeCode = "1E7BF0C5-FEDF-4702-A504-6E32A7C86BA4"?>
44
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
55
<Product

src/SqlNotebook/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
[assembly: AssemblyVersion("1.0.0.0")]
3636

3737
// this is Application.ProductVersion
38-
[assembly: AssemblyFileVersion("1.1.0")]
38+
[assembly: AssemblyFileVersion("1.2.0")]

web/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ <h1>Open source app for casual data exploration in SQL</h1>
2222
<hr width="100%" size="2">
2323
<h2>News</h2>
2424
<ul>
25+
<li><b>2022-05-07</b> - Version 1.2.0 is released. Choosing column types during CSV/XLS import has been improved
26+
with optional auto-detection and the ability to change types for multiple selected columns at once. Non-public
27+
schemas in PostgreSQL can now be imported.<br></li>
2528
<li><b>2022-03-04</b> - Version 1.1.0 is released. This version includes <a moz-do-not-send="true" href=
2629
"https://www.sqlite.org/releaselog/3_38_0.html">SQLite 3.38</a> providing improved JSON functionality. New
2730
functions for cryptographic hashes, fuzzy matching, and statistical aggregates from <a moz-do-not-send="true" href=

0 commit comments

Comments
 (0)