Skip to content

Commit

Permalink
Preparing for release 0.8.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Antondomashnev committed Oct 12, 2017
1 parent 6f6fdbe commit de5a19d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FBSnapshotsViewerTests/Info.plist
Expand Up @@ -17,6 +17,6 @@
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<string>10</string>
</dict>
</plist>
12 changes: 11 additions & 1 deletion Sparkle.xml
Expand Up @@ -52,11 +52,21 @@
<title>0.7.0</title>
<sparkle:minimumSystemVersion>10.12</sparkle:minimumSystemVersion>
<description>
&lt;ul&gt; &lt;li&gt;&lt;a
&lt;ul&gt; &lt;li&gt;&lt;a
href=&quot;https://github.com/Antondomashnev/FBSnapshotsViewer/pull/60&quot;&gt;#60&lt;/a&gt;: Add open in Xcode button - &lt;a href=&quot;https://github.com/antondomashnev&quot;&gt;@antondomashnev&lt;/a&gt;.&lt;/li&gt; &lt;/ul&gt;
</description>
<pubDate>Fri, 18 Aug 2017 16:26:26 +0200</pubDate>
<enclosure type='application/octet-stream' sparkle:version='9' sparkle:shortVersionString='0.7.0' length='5373037' url='https://github.com/Antondomashnev/FBSnapshotsViewer/releases/download/0.7.0/FBSnapshotsViewer-0.7.0.app.zip'/>
</item>
<item>
<title>0.8.0</title>
<sparkle:minimumSystemVersion>10.12</sparkle:minimumSystemVersion>
<description>
&lt;ul&gt; &lt;li&gt; &lt;p&gt;&lt;a
href=&quot;https://github.com/Antondomashnev/FBSnapshotsViewer/pull/62&quot;&gt;#62&lt;/a&gt;: Add copy image button - &lt;a href=&quot;https://github.com/antondomashnev&quot;&gt;@antondomashnev&lt;/a&gt;.&lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt;&lt;a href=&quot;https://github.com/Antondomashnev/FBSnapshotsViewer/pull/64&quot;&gt;#64&lt;/a&gt;: Fix test log parsing issue - &lt;a href=&quot;https://github.com/antondomashnev&quot;&gt;@antondomashnev&lt;/a&gt;.&lt;/p&gt; &lt;/li&gt; &lt;/ul&gt;
</description>
<pubDate>Wed, 11 Oct 2017 21:46:45 -0700</pubDate>
<enclosure type='application/octet-stream' sparkle:version='10' sparkle:shortVersionString='0.8.0' length='9275650' url='https://github.com/Antondomashnev/FBSnapshotsViewer/releases/download/0.8.0/FBSnapshotsViewer-0.8.0.app.zip'/>
</item>
</channel>
</rss>
2 changes: 1 addition & 1 deletion fastlane/actions/sparkle_add_update.rb
Expand Up @@ -27,7 +27,7 @@ def self.run(params)

# Verify that the new version is strictly greater than the last one in the list
last_version = channel.elements.select { |e| e.name == 'item' }.last.get_elements('enclosure').first.attributes['version']
raise "You must update the machine version to be above #{last_version}!" unless params[:machine_version] > last_version
raise "You must update the machine version #{params[:machine_version]} to be above #{last_version}!" unless params[:machine_version] > last_version

# Add a new item to the Appcast feed
item = channel.add_element('item')
Expand Down

0 comments on commit de5a19d

Please sign in to comment.