Skip to content

Commit

Permalink
1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Nov 25, 2018
1 parent f80907f commit 1926b7b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# 1.21.0a2
# 1.21.0

* Added support EdDSA (ed25519) signatures (Kornel)
* DSA signatures are considered outdated, and Apple's `Security.framework` only supports weaker SHA-1-based DSA.
Expand All @@ -13,7 +13,7 @@
* It can sign both DSA (if `dsa_priv.pem` file is specified) and EdDSA (from Keychain)
* The tool now uses Caches directory and doesn't generate unnecessary delta files
* Fixed verification of delta updates on filesystems that change permissions of symlinks
* SPUDownloaderSession leaked because the NSURLSession wasn’t invalidated (Michael Ehrmann)
* Fixed `NSURLSession` leak (Michael Ehrmann)

# 1.20.0

Expand Down
6 changes: 3 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Secure and reliable software update framework for Cocoa developers.
## Features

* Seamless. There's no mention of Sparkle; your icons and app name are used.
* Secure. Updates are verified using DSA signatures and Apple Code Signing.
* Secure. Updates are verified using EdDSA signatures and Apple Code Signing.
* Fast. Supports delta updates which only patch files that have changed.
* Easy to install. Sparkle requires no code in your app, and only needs static files on a web server.
* Supports bundles, preference panes, plugins, and other non-.app software. Can install .pkg files for more complicated products.
Expand All @@ -19,8 +19,8 @@ Secure and reliable software update framework for Cocoa developers.
## Changes since 1.5b

* Compatibilty with macOS Sierra (and all newer versions).
* Up-to-date with 10.13 SDK and Xcode 9 (supports macOS 10.7+).
* Important security fixes.
* Up-to-date with 10.14 SDK and Xcode 10 (supports macOS 10.7+).
* Important security fixes and more secure signature algorithm.
* Cleaned up and modernized code, using ARC and Autolayout.
* Truly automatic background updates (no UI at all) when user agreed to "Automatically download and install updates in the future."
* Upgraded and more reliable binary delta and code signing verification.
Expand Down
2 changes: 1 addition & 1 deletion Sparkle.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Sparkle"
s.version = "1.20.0"
s.version = "1.21.0"
s.summary = "A software update framework for macOS"
s.description = "Sparkle is an easy-to-use software update framework for Cocoa developers."
s.homepage = "http://sparkle-project.org"
Expand Down

0 comments on commit 1926b7b

Please sign in to comment.