Skip to content

Commit 0a14041

Browse files
committed
Bump version
1 parent e5e1905 commit 0a14041

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
config:
1919
- {os: macOS-latest, r: 'release'}
2020
- {os: windows-latest, r: 'devel'}
21+
- {os: windows-latest, r: '4.5'}
2122
- {os: windows-latest, r: '4.4'}
2223
- {os: windows-latest, r: '4.3'}
2324
- {os: windows-latest, r: '4.2'}

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: pdftools
22
Type: Package
33
Title: Text Extraction, Rendering and Converting of PDF Documents
4-
Version: 3.5.0
4+
Version: 3.6.0
55
Authors@R: person("Jeroen", "Ooms", role = c("aut", "cre"), email = "[email protected]",
66
comment = c(ORCID = "0000-0002-4035-0289"))
77
Description: Utilities based on 'libpoppler' <https://poppler.freedesktop.org> for extracting

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
3.6.0
2+
- pdf_text() gains an argument 'raw' (#138)
3+
- Windows/MacOS: update fallback library to poppler 25.09.1
4+
15
3.5.0
26
- Windows: use poppler from Rtools if found
37

src/Makevars.win

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ else
1111
RWINLIB = ../windows/poppler
1212
PKG_CPPFLAGS = -I$(RWINLIB)/include/poppler/cpp -I$(RWINLIB)/include/poppler
1313
PKG_LIBS = -L$(RWINLIB)/lib${subst gcc,,${COMPILED_BY}}${R_ARCH} -L$(RWINLIB)/lib \
14-
-lpoppler-cpp -lpoppler -llcms2 -ljpeg -lpng16 -ltiff -lopenjp2 -lfreetype -lfreetype -lbz2 -liconv -lz
14+
-lpoppler-cpp -lpoppler -lharfbuzz -llcms2 -ljpeg -lpng16 -ltiff -lopenjp2 -lfreetype -lfreetype -lbz2 -liconv -lz
1515
POPPLERDATA = $(RWINLIB)/share/poppler
1616
endif
1717

tools/winlibs.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
if(!file.exists("../windows/poppler/include/poppler/cpp/poppler-document.h")){
22
unlink("../windows", recursive = TRUE)
33
url <- if(grepl("aarch", R.version$platform)){
4-
"https://github.com/r-windows/bundles/releases/download/poppler-23.08.0/poppler-23.08.0-clang-aarch64.tar.xz"
4+
"https://github.com/r-windows/bundles/releases/download/poppler-25.09.1/poppler-25.09.1-clang-aarch64.tar.xz"
55
} else if(grepl("clang", Sys.getenv('R_COMPILED_BY'))){
6-
"https://github.com/r-windows/bundles/releases/download/poppler-23.08.0/poppler-23.08.0-clang-x86_64.tar.xz"
6+
"https://github.com/r-windows/bundles/releases/download/poppler-25.09.1/poppler-25.09.1-clang-x86_64.tar.xz"
77
} else if(getRversion() >= "4.3") {
8-
"https://github.com/r-windows/bundles/releases/download/poppler-23.08.0/poppler-23.08.0-ucrt-x86_64.tar.xz"
8+
"https://github.com/r-windows/bundles/releases/download/poppler-25.09.1/poppler-25.09.1-ucrt-x86_64.tar.xz"
99
} else {
1010
"https://github.com/rwinlib/poppler/archive/v22.04.0-2.tar.gz"
1111
}

0 commit comments

Comments
 (0)