Skip to content

Commit f620a2e

Browse files
Updates
1 parent fea4bc5 commit f620a2e

File tree

5 files changed

+23
-15
lines changed

5 files changed

+23
-15
lines changed

CITATION.bib

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
@misc{HealthSampleData.jl,
2-
author = {TheCedarPrince <jacobszelko@gmail.com> and contributors},
2+
author = {TheCedarPrince <jacobszelko@gmail.com>, ParamThakkar123 <paramthakkar864@gmail.com> and contributors},
33
title = {HealthSampleData.jl},
44
url = {https://github.com/TheCedarPrince/HealthSampleData.jl},
5-
version = {v1.0.0-DEV},
5+
version = {v0.1.0},
66
year = {2025},
77
month = {10}
88
}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 TheCedarPrince <[email protected]> and contributors
3+
Copyright (c) 2025 TheCedarPrince <[email protected]>, ParamThakkar123 <[email protected]> and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "HealthSampleData"
22
uuid = "85295614-c7c2-47eb-9e31-7664d7fbe6db"
3-
authors = ["TheCedarPrince <[email protected]> and contributors"]
3+
authors = ["TheCedarPrince <[email protected]>, ParamThakkar123 <[email protected]> and contributors"]
44
version = "0.0.1"
55

66
[deps]

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://TheCedarPrince.github.io/HealthSampleData.jl/stable/)
2+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://TheCedarPrince.github.io/HealthSampleData.jl/dev/)
3+
[![Build Status](https://github.com/TheCedarPrince/HealthSampleData.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/TheCedarPrince/HealthSampleData.jl/actions/workflows/CI.yml?query=branch%3Amaster)
4+
[![Coverage](https://codecov.io/gh/TheCedarPrince/HealthSampleData.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/TheCedarPrince/HealthSampleData.jl)
5+
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
6+
17
# HealthSampleData
28

39
Sample health data sources for a variety of health formats and use cases.
@@ -16,12 +22,6 @@ Available OMOP CDM data sources:
1622

1723
- **Eunomia** - Synthetic OMOP CDM data generated by Synthea available in a single sqlite file.
1824

19-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://TheCedarPrince.github.io/HealthSampleData.jl/stable/)
20-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://TheCedarPrince.github.io/HealthSampleData.jl/dev/)
21-
[![Build Status](https://github.com/TheCedarPrince/HealthSampleData.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/TheCedarPrince/HealthSampleData.jl/actions/workflows/CI.yml?query=branch%3Amaster)
22-
[![Coverage](https://codecov.io/gh/TheCedarPrince/HealthSampleData.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/TheCedarPrince/HealthSampleData.jl)
23-
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
24-
2525
## Citing
2626

2727
See [`CITATION.bib`](CITATION.bib) for the relevant reference(s).

docs/make.jl

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,27 @@ DocMeta.setdocmeta!(HealthSampleData, :DocTestSetup, :(using HealthSampleData);
55

66
makedocs(;
77
modules=[HealthSampleData],
8-
authors="TheCedarPrince <[email protected]> and contributors",
8+
checkdocs = :none,
9+
authors="TheCedarPrince <[email protected]>, ParamThakkar123 <[email protected]> and contributors",
10+
repo = "https://github.com/JuliaHealth/HealthSampleData.jl/blob/{commit}{path}#{line}",
911
sitename="HealthSampleData.jl",
1012
format=Documenter.HTML(;
11-
canonical="https://TheCedarPrince.github.io/HealthSampleData.jl",
12-
edit_link="master",
13+
prettyurls = get(ENV, "CI", "false") == "true",
14+
canonical="https://JuliaHealth.github.io/HealthSampleData.jl",
1315
assets=String[],
1416
),
1517
pages=[
1618
"Home" => "index.md",
19+
"Quickstart" => "quickstart.md",
20+
21+
"Pre-Cohort Analysis" => "precohort.md",
22+
"Post-Cohort Analysis" => "postcohort.md",
23+
24+
"API" => "api.md",
1725
],
26+
doctest = false,
1827
)
1928

2029
deploydocs(;
21-
repo="github.com/TheCedarPrince/HealthSampleData.jl",
22-
devbranch="master",
30+
repo="github.com/JuliaHealth/HealthSampleData.jl",
2331
)

0 commit comments

Comments
 (0)