Skip to content
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
4 changes: 4 additions & 0 deletions .github/workflows/R-CMD-check-special.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
job-config: ${{ toJson(matrix.config) }}
- name: Install awk for gcc15
if: matrix.config.label == 'gcc15'
run: |
dnf update -y && dnf install -y awk
- uses: r-hub/actions/setup-deps@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: QuickJSR
Title: Interface for the 'QuickJS' Lightweight 'JavaScript' Engine
Version: 1.7.0
Title: Interface for the 'QuickJS-NG' Lightweight 'JavaScript' Engine
Version: 1.8.0
Authors@R: c(
person(c("Andrew", "R."), "Johnson", , "andrew.johnson@arjohnsonau.com", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-7000-8065")),
Expand All @@ -13,7 +13,7 @@ Description: An 'R' interface to the 'QuickJS' portable 'JavaScript'
engine. The engine and all 'R' to 'JavaScript' interoperability is bundled
within the package, requiring no dependencies beyond a 'C' compiler.
License: MIT + file LICENSE
URL: https://github.com/andrjohns/QuickJSR, https://bellard.org/quickjs/
URL: https://github.com/andrjohns/QuickJSR, https://github.com/quickjs-ng/quickjs
BugReports: https://github.com/andrjohns/QuickJSR/issues
Suggests:
knitr,
Expand Down
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# QuickJSR 1.6.1
* Update bundled QuickJS-NG engine to v0.10.1 (see https://github.com/quickjs-ng/quickjs/releases for release notes)

# QuickJSR 1.7.0
* Remove usage of disallowed entrypoints in compiled code

Expand Down
2 changes: 1 addition & 1 deletion src/libquickjs.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ void Rf_exit(int status) {
#define exit Rf_exit

#include "quickjs/cutils.c"
#include "quickjs/libbf.c"
#include "quickjs/xsum.c"
#include "quickjs/libregexp.c"
#include "quickjs/libunicode.c"
#include "quickjs/quickjs.c"
Expand Down
Loading