Skip to content

Commit

Permalink
Add macOS 15 to the list of supported OS types
Browse files Browse the repository at this point in the history
  • Loading branch information
coatless committed Sep 17, 2024
1 parent 2b1a724 commit 2af18d2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: macrtools
Title: macOS Rtools package
Version: 0.0.4
Version: 0.0.5
Authors@R: c(
person(given = "James Joseph",
family = "Balamuta",
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# macrtools 0.0.5

## Features

- Updated to support macOS Sequoia (15.0.0)

# macrtools 0.0.4

## Features
Expand Down
8 changes: 7 additions & 1 deletion R/macos-versions.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ shell_mac_version = function() {
is_macos_r_supported = function() {
mac_version = shell_mac_version()

version_between(mac_version, "10.13.0", "15.0.0")
version_between(mac_version, "10.13.0", "16.0.0")
}

is_macos_sequoia = function() {
mac_version = shell_mac_version()

version_between(mac_version, "15.0.0", "16.0.0")
}

is_macos_sonoma = function() {
Expand Down

0 comments on commit 2af18d2

Please sign in to comment.