Skip to content

Commit

Permalink
Version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Piñera committed Aug 20, 2018
1 parent 2d2054c commit 7645803
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Please, check out guidelines: https://keepachangelog.com/en/1.0.0/

## Next version

## 0.3.0

### Added

- Homebrew formula https://github.com/tuist/tuist/commit/0ab1c6e109134337d4a5e074d77bd305520a935d by @pepibumur.
Expand Down
4 changes: 2 additions & 2 deletions Formula/tuist.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Tuist < Formula
desc "Generate, maintain, and interact with Xcode projects easily"
homepage "https://tuist.io"
url "https://github.com/tuist/tuist/raw/0.2.0/bin/tuistenv"
sha256 "6769e784ade1a6c5726a71afc78b13dd1509f2b421deb6719fd2ff9ab796afda"
url "https://github.com/tuist/tuist/raw/0.3.0/bin/tuistenv"
sha256 "43915c5373f9fe22ac04be730aca625d8320bb27688d3acd8b1687a4728af8cb"

def install
File.rename("tuistenv", "tuist")
Expand Down
2 changes: 1 addition & 1 deletion Sources/TuistCore/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public class Constants {
public static let binFolderName = ".tuist-bin"
public static let binName = "tuist"
public static let gitRepositoryURL = "https://github.com/tuist/tuist.git"
public static let version = "0.2.0"
public static let version = "0.3.0"
public static let swiftVersion: String = "4.1.2"

public struct Manifest {
Expand Down
Binary file modified bin/tuistenv
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,14 @@ <h2 id='features' class='heading'>Features</h2>
<li>🔄 Circular dependency detection.</li>
</ul>
<h2 id='install' class='heading'>Install</h2>
<pre class="highlight plaintext"><code>eval "$(curl -sL https://bit.ly/2JWMfx8)"

<p><strong>Using Homebrew:</strong></p>
<pre class="highlight shell"><code>brew tap tuist/tuist https://github.com/tuist/tuist
brew <span class="nb">install </span>tuist
</code></pre>

<p><strong>Running script:</strong></p>
<pre class="highlight shell"><code><span class="nb">eval</span> <span class="s2">"</span><span class="k">$(</span>curl <span class="nt">-sL</span> https://raw.githubusercontent.com/tuist/tuist/master/script/install<span class="k">)</span><span class="s2">"</span>
</code></pre>
<h2 id='setup-for-development' class='heading'>Setup for development</h2>

Expand Down
Binary file modified docs/docsets/ProjectDescription.tgz
Binary file not shown.
9 changes: 8 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,14 @@ <h2 id='features' class='heading'>Features</h2>
<li>🔄 Circular dependency detection.</li>
</ul>
<h2 id='install' class='heading'>Install</h2>
<pre class="highlight plaintext"><code>eval "$(curl -sL https://bit.ly/2JWMfx8)"

<p><strong>Using Homebrew:</strong></p>
<pre class="highlight shell"><code>brew tap tuist/tuist https://github.com/tuist/tuist
brew <span class="nb">install </span>tuist
</code></pre>

<p><strong>Running script:</strong></p>
<pre class="highlight shell"><code><span class="nb">eval</span> <span class="s2">"</span><span class="k">$(</span>curl <span class="nt">-sL</span> https://raw.githubusercontent.com/tuist/tuist/master/script/install<span class="k">)</span><span class="s2">"</span>
</code></pre>
<h2 id='setup-for-development' class='heading'>Setup for development</h2>

Expand Down

0 comments on commit 7645803

Please sign in to comment.