Skip to content

Commit 5f49d3f

Browse files
authored
chore: Prepare for 0.4.0 (#69)
1 parent 4916d33 commit 5f49d3f

File tree

7 files changed

+16
-9
lines changed

7 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55

6+
## 0.4.0
7+
### Added
8+
- Support moniker in LSIF v0.5.0. [PR#63](https://github.com/microsoft/lsif-java/pull/63)
9+
- Support logical group projects in LSIF v0.5.0. [PR#67](https://github.com/microsoft/lsif-java/pull/67)
10+
### Fixed
11+
- [Fix Bugs](https://github.com/Microsoft/lsif-java/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.4.0+label%3Abug)
12+
613
## 0.3.2
714
- [Fix Bugs](https://github.com/Microsoft/lsif-java/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.3.2+label%3Abug)
815

cmd/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lsif/lsif-java-indexer",
3-
"version": "0.3.2",
3+
"version": "0.4.0",
44
"description": "The Java Indexer for LSIF",
55
"scripts": {
66
"refreshVSToken": "vsts-npm-auth -config .npmrc",

com.microsoft.java.lsif.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %Bundle-Name
44
Bundle-SymbolicName: com.microsoft.java.lsif.core;singleton:=true
5-
Bundle-Version: 0.3.2.qualifier
5+
Bundle-Version: 0.4.0
66
Bundle-Activator: com.microsoft.java.lsif.core.internal.LanguageServerIndexerPlugin
77
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
88
Bundle-Localization: plugin

com.microsoft.java.lsif.core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.java.lsif</groupId>
77
<artifactId>parent</artifactId>
8-
<version>0.3.2-SNAPSHOT</version>
8+
<version>0.4.0</version>
99
</parent>
1010
<artifactId>com.microsoft.java.lsif.core</artifactId>
1111
<packaging>eclipse-plugin</packaging>

com.microsoft.java.lsif.product/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<version>0.3.2-SNAPSHOT</version>
7+
<version>0.4.0</version>
88
<groupId>com.microsoft.java.lsif</groupId>
99
<artifactId>parent</artifactId>
1010
</parent>
@@ -123,7 +123,7 @@
123123
</activation>
124124
<build>
125125
<plugins>
126-
<!-- get major.minor.incremental from this pom, then use ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}
126+
<!-- get major.minor.incremental from this pom, then use ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}
127127
to use the x.y.z version without the -SNAPSHOT suffix -->
128128
<plugin>
129129
<groupId>org.codehaus.mojo</groupId>
@@ -210,14 +210,14 @@
210210
</profile>
211211
<profile>
212212
<id>fast</id>
213-
<!--
213+
<!--
214214
Enable faster builds by targeting a single TP environment.
215215
Run the Maven command with specific environment properties:
216216
- On MacOS : mvn clean verify -Pfast -Denvironment.os=macosx -Denvironment.ws=cocoa -Denvironment.arch=x86_64
217217
- On Win32 : mvn clean verify -Pfast -Denvironment.os=win32 -Denvironment.ws=win32 -Denvironment.arch=x86
218218
- On Win64 : mvn clean verify -Pfast -Denvironment.os=win32 -Denvironment.ws=win32 -Denvironment.arch=x86_64
219219
- On Linux : mvn clean verify -Pfast -Denvironment.os=linux -Denvironment.ws=gtk -Denvironment.arch=x86_64
220-
220+
221221
-->
222222
<build>
223223
<plugins>

com.microsoft.java.lsif.target/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.java.lsif</groupId>
66
<artifactId>parent</artifactId>
7-
<version>0.3.2-SNAPSHOT</version>
7+
<version>0.4.0</version>
88
</parent>
99
<artifactId>com.microsoft.java.lsif.tp</artifactId>
1010
<name>${base.name} :: Target Platform</name>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.microsoft.java.lsif</groupId>
77
<artifactId>parent</artifactId>
88
<name>${base.name} :: Parent</name>
9-
<version>0.3.2-SNAPSHOT</version>
9+
<version>0.4.0</version>
1010
<packaging>pom</packaging>
1111
<properties>
1212
<base.name>Java Language Server Indexer</base.name>

0 commit comments

Comments
 (0)