diff --git a/.Rbuildignore b/.Rbuildignore index b902eed..fb16b94 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -18,3 +18,4 @@ ^dqagui\.Rproj$ ^man/figures$ ^Rplots\.pdf$ +^\.Rproj\.user$ diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e0a9084..e45a84b 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -44,7 +44,7 @@ jobs: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: r-lib/actions/setup-r@v2 with: @@ -64,36 +64,27 @@ jobs: - uses: r-lib/actions/setup-pandoc@v2 if: matrix.config.latex == 'true' - - uses: actions/setup-java@v1 + - uses: actions/setup-java@v4 if: matrix.config.java == 'true' with: - java-version: '8' + distribution: 'temurin' + java-version: '11' + + - name: Install sys deps for Ubuntu + if: runner.os == 'Linux' + run: sudo apt update && sudo apt install -y libgit2-dev libcurl4-openssl-dev - # set date/week for use in cache creation - # https://github.community/t5/GitHub-Actions/How-to-set-and-access-a-Workflow-variable/m-p/42970 - # - cache R packages daily - name: "[Cache] Prepare daily timestamp for cache" if: runner.os != 'Windows' id: date - run: echo "::set-output name=date::$(date '+%d-%m')" + run: echo "date=$(date '+%d-%m')" >> $GITHUB_OUTPUT - - name: "[Cache] Cache R packages" + - name: "[Cache] Restore R package cache" if: runner.os != 'Windows' - uses: pat-s/always-upload-cache@main + uses: actions/cache/restore@v3 with: path: ${{ env.R_LIBS_USER }} key: ${{ runner.os }}-r-${{ matrix.config.r }}-${{steps.date.outputs.date}} - restore-keys: ${{ runner.os }}-r-${{ matrix.config.r }}-${{steps.date.outputs.date}} - - # for some strange Windows reason this step and the next one need to be decoupled - - name: "[Stage] Prepare" - run: | - Rscript -e "if (!requireNamespace('remotes')) install.packages('remotes', type = 'source')" - Rscript -e "if (getRversion() < '3.2' && !requireNamespace('curl')) install.packages('curl', type = 'source')" - - - name: "[Stage] [Linux] Install curl" - if: runner.os == 'Linux' - run: sudo apt install libcurl4-openssl-dev - name: "[Stage] Configure R Java" if: runner.os != 'Windows' && matrix.config.java == 'true' diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 16b2026..7c83073 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -44,7 +44,7 @@ jobs: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: r-lib/actions/setup-r@v2 with: @@ -64,41 +64,31 @@ jobs: - uses: r-lib/actions/setup-pandoc@v2 if: matrix.config.latex == 'true' - - uses: actions/setup-java@v1 + - uses: actions/setup-java@v4 if: matrix.config.java == 'true' with: - java-version: '8' + distribution: 'temurin' + java-version: '11' + + - name: Install sys deps for Ubuntu + if: runner.os == 'Linux' + run: sudo apt update && sudo apt install -y libgit2-dev libcurl4-openssl-dev - # set date/week for use in cache creation - # https://github.community/t5/GitHub-Actions/How-to-set-and-access-a-Workflow-variable/m-p/42970 - # - cache R packages daily - name: "[Cache] Prepare daily timestamp for cache" if: runner.os != 'Windows' id: date - run: echo "::set-output name=date::$(date '+%d-%m')" + run: echo "date=$(date '+%d-%m')" >> $GITHUB_OUTPUT - - name: "[Cache] Cache R packages" + - name: "[Cache] Restore R package cache" if: runner.os != 'Windows' - uses: pat-s/always-upload-cache@main + uses: actions/cache/restore@v3 with: path: ${{ env.R_LIBS_USER }} key: ${{ runner.os }}-r-${{ matrix.config.r }}-${{steps.date.outputs.date}} - restore-keys: ${{ runner.os }}-r-${{ matrix.config.r }}-${{steps.date.outputs.date}} - - # for some strange Windows reason this step and the next one need to be decoupled - - name: "[Stage] Prepare" - run: | - Rscript -e "if (!requireNamespace('remotes')) install.packages('remotes', type = 'source')" - Rscript -e "if (getRversion() < '3.2' && !requireNamespace('curl')) install.packages('curl', type = 'source')" - - - name: "[Stage] [Linux] Install curl" - if: runner.os == 'Linux' - run: sudo apt install libcurl4-openssl-dev - name: "[Stage] Configure R Java" if: runner.os != 'Windows' && matrix.config.java == 'true' - run: sudo R CMD javareconf - + run: "echo export PATH=$PATH > reconf.sh; echo export JAVA_HOME=$JAVA_HOME >> reconf.sh; echo R CMD javareconf >> reconf.sh; sudo bash reconf.sh" - name: Install dependencies run: | diff --git a/.github/workflows/tic.yml b/.github/workflows/tic.yml index 6ffaff7..3807376 100644 --- a/.github/workflows/tic.yml +++ b/.github/workflows/tic.yml @@ -38,7 +38,7 @@ jobs: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: r-lib/actions/setup-r@v2 with: @@ -47,17 +47,26 @@ jobs: - uses: r-lib/actions/setup-tinytex@v2 if: matrix.config.latex == 'true' - env: - # install full prebuilt version - TINYTEX_INSTALLER: TinyTeX + - run: tlmgr --version + + - name: Install additional LaTeX packages + run: | + tlmgr update --self + tlmgr install babel-german + tlmgr list --only-installed - uses: r-lib/actions/setup-pandoc@v2 if: matrix.config.latex == 'true' - - uses: actions/setup-java@v1 + - uses: actions/setup-java@v4 if: matrix.config.java == 'true' with: - java-version: 8 + distribution: 'temurin' + java-version: '11' + + - name: Install sys deps for Ubuntu + if: runner.os == 'Linux' + run: sudo apt update && sudo apt install -y libgit2-dev libcurl4-openssl-dev # set date/week for use in cache creation # https://github.community/t5/GitHub-Actions/How-to-set-and-access-a-Workflow-variable/m-p/42970 @@ -65,21 +74,31 @@ jobs: - name: "[Cache] Prepare daily timestamp for cache" if: runner.os != 'Windows' id: date - run: echo "::set-output name=date::$(date '+%d-%m')" + run: echo "date=$(date '+%d-%m')" >> $GITHUB_OUTPUT - - name: "[Cache] Cache R packages" + - name: "[Cache] Restore R package cache" if: runner.os != 'Windows' - uses: pat-s/always-upload-cache@v3 + uses: actions/cache/restore@v3 with: path: ${{ env.R_LIBS_USER }} key: ${{ runner.os }}-r-${{ matrix.config.r }}-${{steps.date.outputs.date}} - restore-keys: ${{ runner.os }}-r-${{ matrix.config.r }}-${{steps.date.outputs.date}} + + - name: "[Stage] Configure R Java" + if: runner.os != 'Windows' && matrix.config.java == 'true' + run: "echo export PATH=$PATH > reconf.sh; echo export JAVA_HOME=$JAVA_HOME >> reconf.sh; echo R CMD javareconf >> reconf.sh; sudo bash reconf.sh" - name: "[Stage] Install pak" run: Rscript -e "install.packages('pak', repos = 'https://r-lib.github.io/p/pak/stable')" - name: "[Stage] Install" - run: Rscript -e "if (grepl('Ubuntu', Sys.info()[['version']]) && !grepl('Under development', R.version[['status']])) {options(repos = c(CRAN = sprintf('https://packagemanager.rstudio.com/all/__linux__/%s/latest', system('lsb_release -cs', intern = TRUE))))}else{options(repos = c(CRAN = 'cloud.r-project.org'))}; pak::pkg_install('ropensci/tic')" -e "print(tic::dsl_load())" -e "tic::prepare_all_stages()" -e "tic::before_install()" -e "tic::install()" + run: Rscript -e "install.packages('tic', repos = c('https://ropensci.r-universe.dev', if (grepl('Ubuntu', Sys.info()[['version']])) {sprintf('https://packagemanager.rstudio.com/all/__linux__/%s/latest', system('lsb_release -cs', intern = TRUE))} else {'https://cloud.r-project.org'}))" -e "print(tic::dsl_load())" -e "tic::prepare_all_stages()" -e "tic::before_install()" -e "tic::install()" + + - name: "[Cache] Save R package cache" + if: runner.os != 'Windows' && always() + uses: actions/cache/save@v3 + with: + path: ${{ env.R_LIBS_USER }} + key: ${{ runner.os }}-r-${{ matrix.config.r }}-${{steps.date.outputs.date}} - name: "[Stage] Script" run: Rscript -e 'tic::script()' @@ -89,7 +108,7 @@ jobs: - name: "[Stage] Upload R CMD check artifacts" if: failure() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ${{ runner.os }}-r${{ matrix.config.r }}-results path: check diff --git a/.gitignore b/.gitignore index 4b75f7b..6559426 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,4 @@ !/docker/app.R !/docker/shiny-server.conf !/docker/show-log.sh +.Rproj.user diff --git a/DESCRIPTION b/DESCRIPTION index 44fbe01..5771510 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: DQAgui Title: Graphical User Interface for Data Quality Assessment -Version: 0.2.3.9001 +Version: 0.2.3.9002 Authors@R: c( person("Lorenz A.", "Kapsner", , "lorenz.kapsner@gmail.com", role = c("cre", "aut"), comment = c(ORCID = "0000-0003-1866-860X")), @@ -14,7 +14,7 @@ License: GPL-3 URL: https://github.com/miracum/dqa-dqagui BugReports: https://github.com/miracum/dqa-dqagui/issues Encoding: UTF-8 -Date: 2023-08-30 +Date: 2024-05-16 Imports: data.table, daterangepicker, @@ -37,3 +37,4 @@ Imports: Suggests: lintr, testthat (>= 3.0.0) +RoxygenNote: 7.3.1 diff --git a/NEWS.md b/NEWS.md index b6b3e67..4fe0eda 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,13 +1,17 @@ - # DQAgui NEWS -## Unreleased (2023-08-30) +## Unreleased (2023-10-30) #### Other changes +- updated dev-version + ([2c89999](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/2c89999fe2946ce86b64cab669f37b61a58debde)) - updated news.md and cran-commetns ([1562003](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/1562003e10995a56c53d09e7dc0d870cef41f4f7)) +Full set of changes: +[`v0.2.3...6a6793a`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.2.3...6a6793a) + ## v0.2.3 (2023-08-30) #### Other changes @@ -20,13 +24,13 @@ ([7952feb](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/7952feb8ba39ccf58cfa87a58eb11e097df634c8)) Full set of changes: -[`v0.2.2...v0.2.3`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.2.2...v0.2.3) +[`v0.2.2...v0.2.3`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.2.2...v0.2.3) ## v0.2.2 (2023-01-23) #### Refactorings -- adaptions to deprecation of export_affected_ids from dqastats +- adaptions to deprecation of export\_affected\_ids from dqastats ([24139cf](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/24139cf917af91844923c9a86651650118165f4a)) - namespace imports to zzz.r ([8200909](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/82009092b3365053663d9c6c31f92c99ababcb41)) @@ -71,7 +75,7 @@ Full set of changes: ([9b33b49](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/9b33b490af9680aec6da656067f2cacb132a2ccc)) Full set of changes: -[`v0.2.1...v0.2.2`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.2.1...v0.2.2) +[`v0.2.1...v0.2.2`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.2.1...v0.2.2) ## v0.2.1 (2022-07-04) @@ -96,17 +100,17 @@ Full set of changes: ([5b898e6](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/5b898e6ffa21f9902417610023cfdb2a1ad7663f)) - only showing waiter for report if there was no previous error ([b478a92](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/b478a92309111005b45034b8f291b7ee1d38fe59)) -- setting envvars before connecting to database #2 +- setting envvars before connecting to database \#2 ([df7ea4a](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/df7ea4a508c698b010bd9d0d00d6cbdede8c9e78)) - setting envvars before connecting to database ([b672bf5](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/b672bf57e9bd658507ce37e53978e7209c4786e8)) -- fixes #43 and #48 +- fixes \#43 and \#48 ([66cce54](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/66cce54c9cebe7859d4994e9270b4b575df3559a)) #### Refactorings -- refactoring gui_db_settings again; removed unnecessary ‘schema’ and - ‘sqlmodify’ +- refactoring gui\_db\_settings again; removed unnecessary ‘schema’ + and ‘sqlmodify’ ([ae1ebed](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/ae1ebed279450ffb7b1a1fb70d03dcaf13eea0e3)) - removed demo-usage instruction panel and added link to help/instructions in the menu @@ -160,8 +164,8 @@ Full set of changes: #### Docs -- added documentation for demo_usage argument in launch_app; preparing - next cran-release +- added documentation for demo\_usage argument in launch\_app; + preparing next cran-release ([5eb08e8](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/5eb08e85c8d22d1c4e00f8b263a3d57992567eec)) #### Other changes @@ -172,7 +176,7 @@ Full set of changes: ([24516f8](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/24516f891099158fa8020797b7313804fdb66ad2)) - updated metadata to prepare release v0.2.1 ([939faf7](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/939faf7b405bf524dce622d221f5d6bef01bb5e0)) -- merged fix_settings_from_env to development +- merged fix\_settings\_from\_env to development ([418d42b](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/418d42b1134921b24e679ffa97274e0113d30e7e)) - updated function manual ([695a312](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/695a3121284120cd039575ddd96d520cb0d03690)) @@ -205,7 +209,7 @@ Full set of changes: ([6c88c5b](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/6c88c5bfce7caa2cfd51fee7001ac17eb29e7bc0)) Full set of changes: -[`v0.2.0...v0.2.1`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.2.0...v0.2.1) +[`v0.2.0...v0.2.1`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.2.0...v0.2.1) ## v0.2.0 (2022-05-20) @@ -236,13 +240,13 @@ Full set of changes: ([ed3f455](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/ed3f455a982e568d81053f9fcde796dac86946b4)) - removed link to localhost due to failing r cmd check ([3fb88e8](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/3fb88e8b94ade08da986efd354aad99a4ecc2a5c)) -- added dot_helper due to failing r cmd check +- added dot\_helper due to failing r cmd check ([67a079d](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/67a079dd136f575aa7ba9e7c54ff672ec0bd1d4c)) - displaynames broke in some cases ([9884080](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/98840806b2c468b263192436fd2ee4b8c0d566c9)) - wrong formatting of data restrictions in dq check ([c89ffdf](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/c89ffdf474017c43a617958023fee51ae181b185)) -- fixes missing system display if displayname was set #44 +- fixes missing system display if displayname was set \#44 ([3faaf7e](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/3faaf7e12c20e8e6e24cb2ab15194df61c209868)) - sql statements to target system, if source=target ([58177c5](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/58177c57b4c3fd27b53f0dda72c5580418439f8b)) @@ -320,7 +324,7 @@ Full set of changes: ([f34ebe8](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/f34ebe8cec38c384c1caa1b433bf969cb955d489)) Full set of changes: -[`v0.1.9...v0.2.0`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.1.9...v0.2.0) +[`v0.1.9...v0.2.0`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.9...v0.2.0) ## v0.1.9 (2022-02-21) @@ -343,7 +347,7 @@ Full set of changes: ([076cd61](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/076cd61aca81a3e6e259b4f6e7151cd2df7d545b)) Full set of changes: -[`v0.1.8...v0.1.9`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.1.8...v0.1.9) +[`v0.1.8...v0.1.9`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.8...v0.1.9) ## v0.1.8 (2022-02-21) @@ -358,7 +362,7 @@ Full set of changes: ([d53af4f](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/d53af4fb1ce2828c50ac8c962851e7ed68338593)) Full set of changes: -[`v0.1.7...v0.1.8`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.1.7...v0.1.8) +[`v0.1.7...v0.1.8`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.7...v0.1.8) ## v0.1.7 (2022-02-10) @@ -374,7 +378,7 @@ Full set of changes: ([b904120](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/b904120686780a9be8fa82a7404926cf2c256cbe)) - merged development ([82ca1bc](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/82ca1bc14bdfe539fcda356ca025622c0340b51c)) -- env assignment for csv not works. Fixes #42 (gitlab) +- env assignment for csv not works. Fixes \#42 (gitlab) ([10561a5](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/10561a582f8442e46d154bd9b1894502a925a352)) - added storing of paths to env ([e8cf728](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/e8cf7286123616bdad1c4fa27fc0db2441c94dfb)) @@ -407,7 +411,7 @@ Full set of changes: ([fd1c2dd](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/fd1c2dd80d1b820512341a4df6fecede580709b9)) - updated package title ([8ab8940](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/8ab8940dc0d8a11bc38ec7c7387afadb7d21c79e)) -- incorporated spell_check results +- incorporated spell\_check results ([b29c022](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/b29c0225701f7bea01033598bf5d9a86f7294fc2)) - removed dep graphics ([2f2d872](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/2f2d8723aaa68890a5d2b3dc3df905243a48b088)) @@ -423,7 +427,7 @@ Full set of changes: ([7f50fe4](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/7f50fe424fbb48fee8c4d34061bafa86009df164)) - updated news.md ([6b5b959](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/6b5b959b14d903455af8bd6da34db4fd13879a1e)) -- updated parsing of value_set according to new definition from +- updated parsing of value\_set according to new definition from dqastats ([f343c5f](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/f343c5fc6f5ddf9f55a850f512474292c7619e5e)) - updated news.md @@ -436,7 +440,7 @@ Full set of changes: ([49862c1](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/49862c19fbf1981d443f8ff6bba0284767216d55)) Full set of changes: -[`v0.1.6...v0.1.7`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.1.6...v0.1.7) +[`v0.1.6...v0.1.7`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.6...v0.1.7) ## v0.1.6 (2021-07-01) @@ -520,7 +524,7 @@ Full set of changes: ([786f874](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/786f874ab9eee776e26024306d5a9310de23faa9)) Full set of changes: -[`v0.1.5...v0.1.6`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.1.5...v0.1.6) +[`v0.1.5...v0.1.6`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.5...v0.1.6) ## v0.1.5 (2021-02-19) @@ -553,15 +557,15 @@ Full set of changes: - run ci also for new tags ([775e90f](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/775e90f06c00e405e328e61344cdca9b31077a18)) -- updated ci for new harbor and base_image +- updated ci for new harbor and base\_image ([86c6f02](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/86c6f020201795a2f7c5a1ee3d519dabc6111369)) - simplified ci ([319c351](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/319c351f3a1001599e5c650d556a08bb2c34a7b5)) -- switched to dev-base_image for more performance +- switched to dev-base\_image for more performance ([f4c36c4](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/f4c36c48580f95127973494f9329891b9dc47ce5)) -- changed base_image to speed up +- changed base\_image to speed up ([0e19be0](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/0e19be08366741918225c2eb8d41eda5bd587c30)) -- changed base_image to speed up +- changed base\_image to speed up ([b4f6e5a](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/b4f6e5a0d6181169c9a9c9dbc2e1367a62b05095)) #### Docs @@ -577,74 +581,74 @@ Full set of changes: ([5049b4a](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/5049b4a249b321edcb8fe54218c5de055b4e2c1a)) Full set of changes: -[`v0.1.4...v0.1.5`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.1.4...v0.1.5) +[`v0.1.4...v0.1.5`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.4...v0.1.5) ## v0.1.4 (2020-05-07) Full set of changes: -[`v0.1.3...v0.1.4`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.1.3...v0.1.4) +[`v0.1.3...v0.1.4`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.3...v0.1.4) ## v0.1.3 (2020-04-28) Full set of changes: -[`v0.1.2...v0.1.3`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.1.2...v0.1.3) +[`v0.1.2...v0.1.3`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.2...v0.1.3) ## v0.1.2 (2020-04-21) Full set of changes: -[`v0.1.1...v0.1.2`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.1.1...v0.1.2) +[`v0.1.1...v0.1.2`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.1...v0.1.2) ## v0.1.1 (2020-03-20) Full set of changes: -[`v0.1.0...v0.1.1`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.1.0...v0.1.1) +[`v0.1.0...v0.1.1`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.0...v0.1.1) ## v0.1.0 (2020-03-16) Full set of changes: -[`v0.0.7...v0.1.0`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.0.7...v0.1.0) +[`v0.0.7...v0.1.0`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.0.7...v0.1.0) ## v0.0.7 (2020-02-25) Full set of changes: -[`v0.0.6...v0.0.7`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.0.6...v0.0.7) +[`v0.0.6...v0.0.7`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.0.6...v0.0.7) ## v0.0.6 (2020-01-30) Full set of changes: -[`v0.0.4...v0.0.6`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.0.4...v0.0.6) +[`v0.0.4...v0.0.6`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.0.4...v0.0.6) ## v0.0.4 (2019-11-15) Full set of changes: -[`v0.0.3...v0.0.4`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.0.3...v0.0.4) +[`v0.0.3...v0.0.4`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.0.3...v0.0.4) ## v0.0.3 (2019-11-12) Full set of changes: -[`v0.0.2...v0.0.3`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.0.2...v0.0.3) +[`v0.0.2...v0.0.3`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.0.2...v0.0.3) ## v0.0.2 (2019-09-27) Full set of changes: -[`v0.0.2.9000...v0.0.2`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.0.2.9000...v0.0.2) +[`v0.0.2.9000...v0.0.2`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.0.2.9000...v0.0.2) ## v0.0.2.9000 (2019-08-30) Full set of changes: -[`v0.0.1.9000...v0.0.2.9000`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.0.1.9000...v0.0.2.9000) +[`v0.0.1.9000...v0.0.2.9000`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.0.1.9000...v0.0.2.9000) ## v0.0.1.9000 (2019-08-20) Full set of changes: -[`v0.0.0.9003...v0.0.1.9000`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.0.0.9003...v0.0.1.9000) +[`v0.0.0.9003...v0.0.1.9000`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.0.0.9003...v0.0.1.9000) ## v0.0.0.9003 (2019-08-14) Full set of changes: -[`v0.0.0.9002...v0.0.0.9003`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/v0.0.0.9002...v0.0.0.9003) +[`v0.0.0.9002...v0.0.0.9003`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.0.0.9002...v0.0.0.9003) ## v0.0.0.9002 (2019-08-08) Full set of changes: -[`3025380...v0.0.0.9002`](https://gitlab.miracum.org/miracum/dqa/dqagui/-/compare/3025380...v0.0.0.9002) +[`3025380...v0.0.0.9002`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/3025380...v0.0.0.9002) diff --git a/data-raw/devstuffs.R b/data-raw/devstuffs.R index 3143f0e..df9642b 100644 --- a/data-raw/devstuffs.R +++ b/data-raw/devstuffs.R @@ -29,7 +29,7 @@ my_desc$set_authors(c( # Remove some author fields my_desc$del("Maintainer") # Set the version -my_desc$set_version("0.2.3.9001") +my_desc$set_version("0.2.3.9002") # The title of your package my_desc$set(Title = "Graphical User Interface for Data Quality Assessment") # The description of your package