This commit is contained in:
Shi Chen 2020-12-02 10:37:52 +08:00 коммит произвёл GitHub
Родитель 4916d33c32
Коммит 5f49d3fbb9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
7 изменённых файлов: 16 добавлений и 9 удалений

Просмотреть файл

@ -3,6 +3,13 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## 0.4.0
### Added
- Support moniker in LSIF v0.5.0. [PR#63](https://github.com/microsoft/lsif-java/pull/63)
- Support logical group projects in LSIF v0.5.0. [PR#67](https://github.com/microsoft/lsif-java/pull/67)
### Fixed
- [Fix Bugs](https://github.com/Microsoft/lsif-java/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.4.0+label%3Abug)
## 0.3.2
- [Fix Bugs](https://github.com/Microsoft/lsif-java/issues?q=is%3Aissue+is%3Aclosed+milestone%3A0.3.2+label%3Abug)

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@lsif/lsif-java-indexer",
"version": "0.3.2",
"version": "0.4.0",
"description": "The Java Indexer for LSIF",
"scripts": {
"refreshVSToken": "vsts-npm-auth -config .npmrc",

Просмотреть файл

@ -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.3.2.qualifier
Bundle-Version: 0.4.0
Bundle-Activator: com.microsoft.java.lsif.core.internal.LanguageServerIndexerPlugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-Localization: plugin

Просмотреть файл

@ -5,7 +5,7 @@
<parent>
<groupId>com.microsoft.java.lsif</groupId>
<artifactId>parent</artifactId>
<version>0.3.2-SNAPSHOT</version>
<version>0.4.0</version>
</parent>
<artifactId>com.microsoft.java.lsif.core</artifactId>
<packaging>eclipse-plugin</packaging>

Просмотреть файл

@ -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.3.2-SNAPSHOT</version>
<version>0.4.0</version>
<groupId>com.microsoft.java.lsif</groupId>
<artifactId>parent</artifactId>
</parent>
@ -123,7 +123,7 @@
</activation>
<build>
<plugins>
<!-- get major.minor.incremental from this pom, then use ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}
<!-- get major.minor.incremental from this pom, then use ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}
to use the x.y.z version without the -SNAPSHOT suffix -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
@ -210,14 +210,14 @@
</profile>
<profile>
<id>fast</id>
<!--
<!--
Enable faster builds by targeting a single TP environment.
Run the Maven command with specific environment properties:
- On MacOS : mvn clean verify -Pfast -Denvironment.os=macosx -Denvironment.ws=cocoa -Denvironment.arch=x86_64
- On Win32 : mvn clean verify -Pfast -Denvironment.os=win32 -Denvironment.ws=win32 -Denvironment.arch=x86
- On Win64 : mvn clean verify -Pfast -Denvironment.os=win32 -Denvironment.ws=win32 -Denvironment.arch=x86_64
- On Linux : mvn clean verify -Pfast -Denvironment.os=linux -Denvironment.ws=gtk -Denvironment.arch=x86_64
-->
<build>
<plugins>

Просмотреть файл

@ -4,7 +4,7 @@
<parent>
<groupId>com.microsoft.java.lsif</groupId>
<artifactId>parent</artifactId>
<version>0.3.2-SNAPSHOT</version>
<version>0.4.0</version>
</parent>
<artifactId>com.microsoft.java.lsif.tp</artifactId>
<name>${base.name} :: Target Platform</name>

Просмотреть файл

@ -6,7 +6,7 @@
<groupId>com.microsoft.java.lsif</groupId>
<artifactId>parent</artifactId>
<name>${base.name} :: Parent</name>
<version>0.3.2-SNAPSHOT</version>
<version>0.4.0</version>
<packaging>pom</packaging>
<properties>
<base.name>Java Language Server Indexer</base.name>