From 236cef9fddb288fb39372c4764700ce2342f50c2 Mon Sep 17 00:00:00 2001
From: Fredrik Ekre <ekrefredrik@gmail.com>
Date: Fri, 30 Nov 2018 18:51:30 +0100
Subject: [PATCH] Compat annotation for #28156 (splitpath).

---
 base/path.jl | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/base/path.jl b/base/path.jl
index 21d5085bff95a8..a0c6cf27163444 100644
--- a/base/path.jl
+++ b/base/path.jl
@@ -210,6 +210,9 @@ Split a file path into all its path components. This is the opposite of
 `joinpath`. Returns an array of substrings, one for each directory or file in
 the path, including the root directory if present.
 
+!!! compat "Julia 1.1"
+    This function requires at least Julia 1.1.
+
 # Examples
 ```jldoctest
 julia> splitpath("/home/myuser/example.jl")