Skip to content

Commit

Permalink
Version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
electroly committed May 8, 2022
1 parent d30ed5e commit d1afc7d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
12 changes: 6 additions & 6 deletions ps1/New-Release.ps1
Expand Up @@ -63,11 +63,11 @@ rm $zipFilePath -ErrorAction SilentlyContinue
rm "$relDir\SqlNotebook.wixobj" -ErrorAction SilentlyContinue
rm "$relDir\SqlNotebook.wxs" -ErrorAction SilentlyContinue

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

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

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

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

Pop-Location
2 changes: 1 addition & 1 deletion src/SqlNotebook.wxs
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<?define ProductVersion = "1.1.0"?>
<?define ProductVersion = "1.2.0"?>
<?define ProductUpgradeCode = "1E7BF0C5-FEDF-4702-A504-6E32A7C86BA4"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product
Expand Down
2 changes: 1 addition & 1 deletion src/SqlNotebook/Properties/AssemblyInfo.cs
Expand Up @@ -35,4 +35,4 @@
[assembly: AssemblyVersion("1.0.0.0")]

// this is Application.ProductVersion
[assembly: AssemblyFileVersion("1.1.0")]
[assembly: AssemblyFileVersion("1.2.0")]
3 changes: 3 additions & 0 deletions web/index.html
Expand Up @@ -22,6 +22,9 @@ <h1>Open source app for casual data exploration in SQL</h1>
<hr width="100%" size="2">
<h2>News</h2>
<ul>
<li><b>2022-05-07</b> - Version 1.2.0 is released. Choosing column types during CSV/XLS import has been improved
with optional auto-detection and the ability to change types for multiple selected columns at once. Non-public
schemas in PostgreSQL can now be imported.<br></li>
<li><b>2022-03-04</b> - Version 1.1.0 is released. This version includes <a moz-do-not-send="true" href=
"https://www.sqlite.org/releaselog/3_38_0.html">SQLite 3.38</a> providing improved JSON functionality. New
functions for cryptographic hashes, fuzzy matching, and statistical aggregates from <a moz-do-not-send="true" href=
Expand Down

0 comments on commit d1afc7d

Please sign in to comment.