Skip to content

Commit 036755a

Browse files
kavehshahedibhufmann
authored andcommitted
server: Update the trace server version to 0.3.0
The version is now updated to 0.3.0 from 0.2.0. Most of the changes are related to managing experiments' bookmarks. Also, the bookmarks tag (BKM) is added to TraceServerOpenApiResource class. [Changed] Trace server version is changed to 0.3.0 Signed-off-by: Kaveh Shahedi <kaveh.shahedi@ericsson.com>
1 parent 6917163 commit 036755a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

trace-server/org.eclipse.tracecompass.incubator.trace.server.jersey.rest.core/src/org/eclipse/tracecompass/incubator/internal/trace/server/jersey/rest/core/services/EndpointConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public final class EndpointConstants {
8484
static final String LICENSE = "Apache 2"; //$NON-NLS-1$
8585
static final String LICENSE_URL = "http://www.apache.org/licenses/"; //$NON-NLS-1$
8686
/** The TSP version */
87-
public static final String VERSION = "0.2.0"; //$NON-NLS-1$
87+
public static final String VERSION = "0.3.0"; //$NON-NLS-1$
8888
static final String SERVER = "https://localhost:8080/tsp/api"; //$NON-NLS-1$
8989

9090
/**

trace-server/org.eclipse.tracecompass.incubator.trace.server.jersey.rest.core/src/org/eclipse/tracecompass/incubator/internal/trace/server/jersey/rest/core/services/TraceServerOpenApiResource.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
package org.eclipse.tracecompass.incubator.internal.trace.server.jersey.rest.core.services;
1313

1414
import static org.eclipse.tracecompass.incubator.internal.trace.server.jersey.rest.core.services.EndpointConstants.ANN;
15+
import static org.eclipse.tracecompass.incubator.internal.trace.server.jersey.rest.core.services.EndpointConstants.BKM;
1516
import static org.eclipse.tracecompass.incubator.internal.trace.server.jersey.rest.core.services.EndpointConstants.CFG;
1617
import static org.eclipse.tracecompass.incubator.internal.trace.server.jersey.rest.core.services.EndpointConstants.DESC;
1718
import static org.eclipse.tracecompass.incubator.internal.trace.server.jersey.rest.core.services.EndpointConstants.DIA;
@@ -48,6 +49,7 @@
4849
@Server(url = SERVER)
4950
}, tags = {
5051
@Tag(name = ANN, description = "Retrieve annotations for different outputs."),
52+
@Tag(name = BKM, description = "Bookmark areas of interest in the experiment."),
5153
@Tag(name = CFG, description = "Manage configuration source types and configurations."),
5254
@Tag(name = DIA, description = "Retrieve the server's status."),
5355
@Tag(name = DT, description = "Query data tree models (e.g. for statistics)."),

0 commit comments

Comments
 (0)