Skip to content

Commit

Permalink
Merged PR 450790: Bump version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo committed Mar 29, 2019
1 parent 871174a commit c6a52c1
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion cmd/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cmd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lsif/lsif-java-indexer",
"version": "0.0.1",
"version": "0.1.1",
"description": "The Java Indexer for LSIF",
"scripts": {
"refreshVSToken": "vsts-npm-auth -config .npmrc",
Expand Down
2 changes: 1 addition & 1 deletion com.microsoft.java.lsif.core/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: com.microsoft.java.lsif.core;singleton:=true
Bundle-Version: 0.1.0.qualifier
Bundle-Version: 0.1.1.qualifier
Bundle-Activator: com.microsoft.java.lsif.core.internal.LanguageServerIndexerPlugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-Localization: plugin
Expand Down
2 changes: 1 addition & 1 deletion com.microsoft.java.lsif.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.microsoft.java.lsif</groupId>
<artifactId>parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
</parent>
<artifactId>com.microsoft.java.lsif.core</artifactId>
<packaging>eclipse-plugin</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ private IConstant() {
public final static String JAVA_ID = "java";

public final static String DEFAULT_LSIF_FILE_NAME = "lsif.json";

public final static String LSIF_FORMAT_VERSION = "0.1.0";
}
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private void buildIndex(IPath path, IProgressMonitor monitor, Emitter emitter) {
return;
}

emitter.emit(lsif.getVertexBuilder().metaData("0.1.0"));
emitter.emit(lsif.getVertexBuilder().metaData());

IJavaProject javaProject = JavaCore.create(proj);
if (!javaProject.exists()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public VertexBuilder(IdGenerator generator) {
this.generator = generator;
}

public MetaData metaData(String version) {
return new MetaData(generator.next(), version);
public MetaData metaData() {
return new MetaData(generator.next());
}

public Project project() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@

package com.microsoft.java.lsif.core.internal.protocol;

import com.microsoft.java.lsif.core.internal.IConstant;

public class MetaData extends Vertex {

public String version;

public MetaData(String id, String version) {
public MetaData(String id) {
super(id, Vertex.METADATA);
this.version = version;
this.version = IConstant.LSIF_FORMAT_VERSION;
}
}
2 changes: 1 addition & 1 deletion com.microsoft.java.lsif.product/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
<groupId>com.microsoft.java.lsif</groupId>
<artifactId>parent</artifactId>
</parent>
Expand Down
2 changes: 1 addition & 1 deletion com.microsoft.java.lsif.target/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.microsoft.java.lsif</groupId>
<artifactId>parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
</parent>
<artifactId>com.microsoft.java.lsif.tp</artifactId>
<name>${base.name} :: Target Platform</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.microsoft.java.lsif</groupId>
<artifactId>parent</artifactId>
<name>${base.name} :: Parent</name>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<base.name>Java Language Server Indexer</base.name>
Expand Down

0 comments on commit c6a52c1

Please sign in to comment.