tupdate manual to point to tagged release in Julia METADATA - Granular.jl - Julia package for granular dynamics simulation
 (HTM) git clone git://src.adamsgaard.dk/Granular.jl
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit b9871a74c1289f2d04517636331f75e4432bc580
 (DIR) parent 2f24a09c7a4b74f8f45d3ab96f459a135018e546
 (HTM) Author: Anders Damsgaard <andersd@riseup.net>
       Date:   Sat,  4 Nov 2017 22:55:09 -0400
       
       update manual to point to tagged release in Julia METADATA
       
       Diffstat:
         M docs/src/man/installation.md        |      14 ++++----------
       
       1 file changed, 4 insertions(+), 10 deletions(-)
       ---
 (DIR) diff --git a/docs/src/man/installation.md b/docs/src/man/installation.md
       t@@ -2,13 +2,13 @@
        Granular.jl can be installed directly from the Julia shell by:
        
        ```julia-repl
       -julia> Pkg.clone("git://github.com/anders-dc/Granular.jl.git")
       +julia> Pkg.add("Granular")
        ```
        
        This will install the contents of this repository in the folder 
       -`~/.julia/v$(JULIA_VERSION)/Granular` and install its requirements.  The package [JLD](https://github.com/JuliaIO/JLD.jl) 
       -is used for model restarts and is recommended but not required, and is thus not 
       -automatically installed.
       +`~/.julia/v$(JULIA_VERSION)/Granular` and install its requirements.  The 
       +package [JLD](https://github.com/JuliaIO/JLD.jl) is used for model restarts and 
       +is recommended but not required, and is thus not automatically installed.
        
        You can run the package tests, which are contained in the `test/` directory, with
        the following command:
       t@@ -16,9 +16,3 @@ the following command:
        ```julia-repl
        julia> Pkg.test("Granular")
        ```
       -
       -The package can be updated from this repository using:
       -
       -```julia-repl
       -julia> Pkg.update("Granular")
       -```