From 668f49995cdf39cac4da7831c768418625302fde Mon Sep 17 00:00:00 2001 From: Jan Tilly Date: Mon, 22 Sep 2025 22:26:04 +0200 Subject: [PATCH 1/3] Update branch. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 622732e..8ee806f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Matching Algorithms in R and C++ [![GitHub Actions](https://github.com/jtilly/matchingR/workflows/Test%20Package/badge.svg)](https://github.com/jtilly/matchingR/actions) -[![Coverage Status](https://coveralls.io/repos/jtilly/matchingR/badge.svg?branch=master)](https://coveralls.io/github/jtilly/matchingR) +[![Coverage Status](https://coveralls.io/repos/jtilly/matchingR/badge.svg?branch=main)](https://coveralls.io/github/jtilly/matchingR) [![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/matchingR)](https://cran.r-project.org/package=matchingR) [![CRAN_Downloads](https://cranlogs.r-pkg.org/badges/grand-total/matchingR?color=brightgreen)](https://cran.r-project.org/package=matchingR) From 62cd145f711534992ce86ca719a3a8a5a9bd2ba3 Mon Sep 17 00:00:00 2001 From: Jan Tilly Date: Mon, 22 Sep 2025 22:26:38 +0200 Subject: [PATCH 2/3] Add news. --- NEWS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/NEWS.md b/NEWS.md index cb09bf1..e38ee9b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,8 @@ +# matchingR 2.0.0 + +- Remove deprecated functions. +- Drop `CXX11` standard. + # matchingR 1.3.3 - Fixed unit test for validate functions that caused a CRAN check to fail. From 7629d12364e4c245c13df6deea49707c69f3a3c5 Mon Sep 17 00:00:00 2001 From: Jan Tilly Date: Mon, 22 Sep 2025 22:32:37 +0200 Subject: [PATCH 3/3] Add .R and .cpp. --- .github/workflows/pr-commands.yaml | 42 +----------------------------- 1 file changed, 1 insertion(+), 41 deletions(-) diff --git a/.github/workflows/pr-commands.yaml b/.github/workflows/pr-commands.yaml index 3f40bf9..88d7525 100644 --- a/.github/workflows/pr-commands.yaml +++ b/.github/workflows/pr-commands.yaml @@ -41,53 +41,13 @@ jobs: run: | git config --local user.name "$GITHUB_ACTOR" git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com" - git add man/\* NAMESPACE + git add man/\* NAMESPACE R/*.R src/*.cpp git commit -m 'Document' - uses: r-lib/actions/pr-push@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - - compile: - if: ${{ github.event.issue.pull_request && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER') && startsWith(github.event.comment.body, '/compile') }} - name: compile - runs-on: ubuntu-latest - env: - GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} - permissions: - contents: write - steps: - - uses: actions/checkout@v4 - - - uses: r-lib/actions/pr-fetch@v2 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - - - uses: r-lib/actions/setup-r@v2 - with: - use-public-rspm: true - - - uses: r-lib/actions/setup-r-dependencies@v2 - with: - extra-packages: any::Rcpp - needs: pr-compile - - - name: Compile - run: Rcpp::compileAttributes() - shell: Rscript {0} - - - name: commit - run: | - git config --local user.name "$GITHUB_ACTOR" - git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com" - git add man/\* NAMESPACE - git commit -m 'Compile attributes' - - - uses: r-lib/actions/pr-push@v2 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - style: if: ${{ github.event.issue.pull_request && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER') && startsWith(github.event.comment.body, '/style') }} name: style