File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 11Package: macrtools
22Title: macOS Rtools package
3- Version: 0.0.4
3+ Version: 0.0.5
44Authors@R: c(
55 person(given = "James Joseph",
66 family = "Balamuta",
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -7,7 +7,13 @@ shell_mac_version = function() {
77is_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
1319is_macos_sonoma = function () {
You can’t perform that action at this time.
0 commit comments