Skip to content

Commit f7a9a17

Browse files
authored
Add macOS 15 to the list of supported OS types (#17)
1 parent 2b1a724 commit f7a9a17

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: macrtools
22
Title: macOS Rtools package
3-
Version: 0.0.4
3+
Version: 0.0.5
44
Authors@R: c(
55
person(given = "James Joseph",
66
family = "Balamuta",

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# macrtools 0.0.5
2+
3+
## Features
4+
5+
- Updated to support macOS Sequoia (15.0.0)
6+
17
# macrtools 0.0.4
28

39
## Features

R/macos-versions.R

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ shell_mac_version = function() {
77
is_macos_r_supported = function() {
88
mac_version = shell_mac_version()
99

10-
version_between(mac_version, "10.13.0", "15.0.0")
10+
version_between(mac_version, "10.13.0", "16.0.0")
11+
}
12+
13+
is_macos_sequoia = function() {
14+
mac_version = shell_mac_version()
15+
16+
version_between(mac_version, "15.0.0", "16.0.0")
1117
}
1218

1319
is_macos_sonoma = function() {

0 commit comments

Comments
 (0)