Skip to content

Commit

Permalink
Add installation instructions (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge authored Nov 25, 2020
1 parent f176da6 commit 6a4c0b8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "FHIRClient"
uuid = "b44d2ca2-8176-4fa9-8684-826e17b2a2da"
authors = ["Dilum Aluthge", "Rhode Island Quality Institute", "contributors"]
version = "0.7.0"
version = "0.7.1"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ makedocs(;
),
pages=[
"Home" => "index.md",
"Installing FHIRClient" => "installation.md",
"Examples" => "examples.md",
"API" => "api.md",
"Auto-generating the type definitions" => "generate.md",
Expand Down
12 changes: 12 additions & 0 deletions docs/src/installation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
```@meta
CurrentModule = FHIRClient
```

# Installing FHIRClient

To install FHIRClient, open Julia and run the following commands:
```julia
julia> import Pkg

julia> Pkg.add("FHIRClient")
```

2 comments on commit 6a4c0b8

@DilumAluthge
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/25303

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.7.1 -m "<description of version>" 6a4c0b8e8b3970c9e07402496eb6a762c2ef0a0c
git push origin v0.7.1

Please sign in to comment.