Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 0.3.0 release #126

Merged
merged 7 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ PREPROCESS_DB_USERNAME= # username for the source database
PREPROCESS_DB_PASSWORD= # password for the source database
PREPROCESS_DB_CDM_SCHEMA= # Schema name in the database to connect the OMOP CDM to
PREPROCESS_SUMMARISE_LEVEL=monthly # Level to summarise record counts at (monthly or quarterly)
BUILD_CORES_MAKE=4 # Number of cores to use for make in docker build
BUILD_CORES_MAKE=1 # Number of cores to use for make in docker build

# Low-frequency replacement
LOW_FREQUENCY_THRESHOLD=10
Expand Down
2 changes: 1 addition & 1 deletion app/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: omopcat
Title: The OMOP Data Catalogue Dashboard
Version: 0.2.2.9000
Version: 0.3.0
Authors@R: c(
person('Milan', 'Malfait', email = 'm.malfait@ucl.ac.uk', role = c('cre', 'aut')),
person('Stefan', 'Piatek', role = 'aut'),
Expand Down
4 changes: 2 additions & 2 deletions app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: installing renv environment
FROM rocker/shiny-verse:4.4.1 AS base
FROM rocker/shiny-verse:4.4.2 AS base

WORKDIR /app

Expand All @@ -26,7 +26,7 @@ RUN install2.r --error --skipinstalled renv devtools remotes && \
RUN R -e 'remotes::install_github("SAFEHR-data/omop-bundles")'

# Stage 2: Installing omopcat
FROM rocker/shiny-verse:4.4.1
FROM rocker/shiny-verse:4.4.2

WORKDIR /app
COPY --from=base /app .
Expand Down
2 changes: 1 addition & 1 deletion app/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# omopcat (development version)
# omopcat 0.3.0

* Keep the concepts table at a minimum height (@milanmlft #114)
* Use better low-frequency replacement values (@milanmlft #115)
Expand Down
2 changes: 1 addition & 1 deletion app/inst/golem-config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
default:
golem_name: omopcat
golem_version: 0.2.2
golem_version: 0.3.0
app_prod: no
production:
app_prod: yes
Expand Down
Loading
Loading