Skip to content

Commit

Permalink
server: Update the trace server version to 0.3.0
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
kavehshahedi authored and bhufmann committed Nov 26, 2024
1 parent 5e42f43 commit 00ad65d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public final class EndpointConstants {
static final String LICENSE = "Apache 2"; //$NON-NLS-1$
static final String LICENSE_URL = "http://www.apache.org/licenses/"; //$NON-NLS-1$
/** The TSP version */
public static final String VERSION = "0.2.0"; //$NON-NLS-1$
public static final String VERSION = "0.3.0"; //$NON-NLS-1$
static final String SERVER = "https://localhost:8080/tsp/api"; //$NON-NLS-1$

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
package org.eclipse.tracecompass.incubator.internal.trace.server.jersey.rest.core.services;

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

0 comments on commit 00ad65d

Please sign in to comment.