SLING-3524 : ResourceResolver.clone(null) should not share the same JCR session
diff --git a/src/main/java/org/apache/sling/spi/resource/provider/ResourceProvider.java b/src/main/java/org/apache/sling/spi/resource/provider/ResourceProvider.java
index 7089a01..6904933 100644
--- a/src/main/java/org/apache/sling/spi/resource/provider/ResourceProvider.java
+++ b/src/main/java/org/apache/sling/spi/resource/provider/ResourceProvider.java
@@ -210,9 +210,10 @@
     public static final String AUTH_ADMIN = "provider.auth.admin";
 
     /**
-     * The authentication information property indicating that an existing ResourceResolver is being cloned.
+     * The authentication information property indicating that an existing resource resolver is being cloned.
      * Providers that receive stateful objects as authentication information must deep-clone those objects
      * when this property is present, to avoid inadvertent state sharing with the existing resolver.
+     * @since 1.2.0
      */
     public static final String AUTH_CLONE = "provider.auth.clone";
 
diff --git a/src/main/java/org/apache/sling/spi/resource/provider/package-info.java b/src/main/java/org/apache/sling/spi/resource/provider/package-info.java
index 734e439..f0818be 100644
--- a/src/main/java/org/apache/sling/spi/resource/provider/package-info.java
+++ b/src/main/java/org/apache/sling/spi/resource/provider/package-info.java
@@ -17,7 +17,7 @@
  * under the License.
  */
 
-@Version("1.1.0")
+@Version("1.2.0")
 package org.apache.sling.spi.resource.provider;
 
 import org.osgi.annotation.versioning.Version;