Skip to content

Commit 3a1a937

Browse files
committed
Bump for release
1 parent a37feeb commit 3a1a937

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
config:
21-
- {os: macos-13, r: 'release'}
22-
- {os: macos-14, r: 'release'}
21+
- {os: macos-latest, r: 'release'}
22+
- {os: macos-15-intel, r: 'release'}
2323
- {os: windows-latest, r: '4.1'}
2424
- {os: windows-latest, r: '4.2'}
2525
- {os: windows-latest, r: '4.3'}

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: RMySQL
2-
Version: 0.11.1
2+
Version: 0.11.2
33
Title: Database Interface and 'MySQL' Driver for R
44
Description: Legacy 'DBI' interface to 'MySQL' / 'MariaDB' based on old code
55
ported from S-PLUS. A modern 'MySQL' client written in 'C++' is available

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.11.2
2+
3+
* MacOS: update to libmariadbclient 3.4.8
4+
15
# Version 0.11.0
26

37
* Windows: use libmariadbclient from Rtools if found

configure

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ elif [ "$PKGCONFIG_CFLAGS" ] || [ "$PKGCONFIG_LIBS" ]; then
3030
echo "Found mysql_config cflags and libs!"
3131
PKG_CFLAGS=${PKGCONFIG_CFLAGS}
3232
PKG_LIBS=${PKGCONFIG_LIBS}
33-
# Workaround for homebrew linkin bug
34-
if [ `uname` = "Darwin" ]; then
35-
PKG_LIBS="-L/usr/local/opt/openssl/lib $PKG_LIBS"
36-
fi
3733
elif [ `uname` = "Darwin" ]; then
3834
test ! "$CI" && brew --version 2>/dev/null
3935
if [ $? -eq 0 ]; then

0 commit comments

Comments
 (0)