aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java2
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java2
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/transport/ServiceMayNotContinueException.java2
3 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java
index c2bf744108..6feb1862ed 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java
@@ -68,7 +68,7 @@ import static org.eclipse.jgit.lib.Constants.R_TAGS;
/**
* Given a commit, show the most recent tag that is reachable from a commit.
*
- * @since 3.1
+ * @since 3.2
*/
public class DescribeCommand extends GitCommand<String> {
private final RevWalk w;
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java
index dc54e7e3b5..08ab88005d 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java
@@ -668,7 +668,7 @@ public class Git {
* commit in terms of the nearest git tag.
*
* @return a {@link DescribeCommand}.
- * @since 3.1
+ * @since 3.2
*/
public DescribeCommand describe() {
return new DescribeCommand(repo);
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/ServiceMayNotContinueException.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/ServiceMayNotContinueException.java
index 4c518eea9a..e000cfbe64 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/ServiceMayNotContinueException.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/ServiceMayNotContinueException.java
@@ -77,6 +77,7 @@ public class ServiceMayNotContinueException extends IOException {
* be shown to an end-user.
* @param cause
* the cause of the exception.
+ * @since 3.2
*/
public ServiceMayNotContinueException(String msg, Throwable cause) {
super(msg);
@@ -88,6 +89,7 @@ public class ServiceMayNotContinueException extends IOException {
*
* @param cause
* the cause of the exception.
+ * @since 3.2
*/
public ServiceMayNotContinueException(Throwable cause) {
this(JGitText.get().internalServerError, cause);