Skip to content

Commit

Permalink
Bump version to 1.0.3
Browse files Browse the repository at this point in the history
Version 1.0.2 has been used for testing purposes
and won't be officially released.
  • Loading branch information
echebbi committed Feb 26, 2019
1 parent 78d47ac commit b096ccd
Show file tree
Hide file tree
Showing 21 changed files with 45 additions and 39 deletions.
24 changes: 15 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,42 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [1.0.3] - 2019-02-26
### Fixed
- [#56](https://github.com/KazeJiyu/eclipse-discord-integration/issues/56) Prevent the plug-in from not working in some environments

## [1.0.1] - 2018-11-24
### Fixed
- Properly close connection with Discord on workbench shutdown
- [#55](https://github.com/KazeJiyu/eclipse-discord-integration/issues/55) Properly close connection with Discord on workbench shutdown

## [1.0.0] - 2018-08-23
### Added
- Allow to deactivate the Rich Presence integration
- Handle the C language (_*.c_ and _*.h_ files)
- First deployment on the [Eclipse Marketplace](https://marketplace.eclipse.org/content/discord-rich-presence-eclipse-ide)
- [#50](https://github.com/KazeJiyu/eclipse-discord-integration/pull/50) Allow to deactivate the Rich Presence integration
- [#52](https://github.com/KazeJiyu/eclipse-discord-integration/pull/52) Handle the C language (_*.c_ and _*.h_ files)
- [#54](https://github.com/KazeJiyu/eclipse-discord-integration/pull/54) First deployment on the [Eclipse Marketplace](https://marketplace.eclipse.org/content/discord-rich-presence-eclipse-ide)

### Fixed
- Prevent elapsed time from not showing at startup when set on file change

## [0.8.4] - 2018-07-01
### Added
- [#34](https://github.com/KazeJiyu/eclipse-discord-integration/pull/34) Log errors in Eclipse "Error Log" views

### Fixed
- Make the plug-in available on macOS
- Log errors in Eclipse "Error Log" views
- [#26](https://github.com/KazeJiyu/eclipse-discord-integration/issues/26) Make the plug-in available on macOS

## [0.8.3] - 2018-05-29
### Added
- Make possible to change the name displayed in Discord for a given project
- [#32](https://github.com/KazeJiyu/eclipse-discord-integration/pull/32) Make possible to change the name displayed in Discord for a given project
- Update plug-in's name to "Discord Rich Presence for Eclipse IDE"

## [0.8.2] - 2018-05-26
### Fixed
- Make the plug-in available from Eclipse Mars (4.5)
- [#29](https://github.com/KazeJiyu/eclipse-discord-integration/issues/29) Make the plug-in available from Eclipse Mars (4.5)

## [0.8.1] - 2018-05-25
### Fixed
- Settings were not always shown in projet Properties
- [#23](https://github.com/KazeJiyu/eclipse-discord-integration/issues/23) Settings were not always shown in projet Properties

### Added
- Explanations about how to install the plug-in
Expand Down
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: Discord Rich Presence for Eclipse IDE — Default Adapters
Bundle-SymbolicName: fr.kazejiyu.discord.rpc.integration.adapters;singleton:=true
Bundle-Version: 1.0.1
Bundle-Version: 1.0.3
Automatic-Module-Name: fr.kazejiyu.discord.rpc.integration.adapters
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Require-Bundle: fr.kazejiyu.discord.rpc.integration;bundle-version="0.8.2",
Expand Down
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: Discord Rich Presence for Eclipse IDE — Preferences
Bundle-SymbolicName: fr.kazejiyu.discord.rpc.integration.ui.preferences;singleton:=true
Bundle-Version: 1.0.1
Bundle-Version: 1.0.3
Bundle-Activator: fr.kazejiyu.discord.rpc.integration.ui.preferences.Activator
Require-Bundle: org.eclipse.ui;bundle-version="[3.107.0,4.0.0)",
org.eclipse.core.runtime;bundle-version="[3.11.0,4.0.0)",
Expand Down
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: Discord Rich Presence for Eclipse IDE
Bundle-SymbolicName: fr.kazejiyu.discord.rpc.integration;singleton:=true
Bundle-Version: 1.0.1
Bundle-Version: 1.0.3
Bundle-Activator: fr.kazejiyu.discord.rpc.integration.Activator
Require-Bundle: org.eclipse.ui;bundle-version="[3.107.0,4.0.0)",
org.eclipse.core.runtime;bundle-version="[3.11.0,4.0.0)",
Expand Down
2 changes: 1 addition & 1 deletion bundles/java-discord-rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>fr.kazejiyu.discord.rpc.integration.bundles</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
</parent>

<artifactId>java-discord-rpc</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion bundles/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>fr.kazejiyu.discord.rpc.integration.root</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
</parent>

<modules>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="fr.kazejiyu.discord.rpc.integration.feature"
label="Discord Rich Presence"
version="1.0.1"
version="1.0.3"
provider-name="Emmanuel CHEBBI">

<description url="https://github.com/KazeJiyu/eclipse-discord-integration">
Expand Down Expand Up @@ -312,14 +312,14 @@ version(s), and exceptions or additional permissions here}.&quot;
id="fr.kazejiyu.discord.rpc.integration.adapters"
download-size="0"
install-size="0"
version="1.0.1"
version="1.0.3"
unpack="false"/>

<plugin
id="fr.kazejiyu.discord.rpc.integration"
download-size="0"
install-size="0"
version="1.0.1"
version="1.0.3"
unpack="false"/>

</feature>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="fr.kazejiyu.discord.rpc.integration.ui.feature"
label="Discord Rich Presence UI"
version="1.0.1"
version="1.0.3"
provider-name="Emmanuel CHEBBI">

<description url="https://github.com/KazeJiyu/eclipse-discord-integration">
Expand Down Expand Up @@ -304,7 +304,7 @@ version(s), and exceptions or additional permissions here}.&quot;
id="fr.kazejiyu.discord.rpc.integration.ui.preferences"
download-size="0"
install-size="0"
version="1.0.1"
version="1.0.3"
unpack="false"/>

</feature>
2 changes: 1 addition & 1 deletion features/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>fr.kazejiyu.discord.rpc.integration.root</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
</parent>

<modules>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>fr.kazejiyu.discord.rpc.integration.root</artifactId>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<version>1.0.1</version>
<version>1.0.3</version>
<packaging>pom</packaging>

<modules>
Expand Down Expand Up @@ -69,7 +69,7 @@
<artifact>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>fr.kazejiyu.discord.rpc.integration.target</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
</artifact>
</target>
<environments>
Expand Down
4 changes: 2 additions & 2 deletions releng/fr.kazejiyu.discord.rpc.integration.p2/category.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
<feature url="features/fr.kazejiyu.discord.rpc.integration.feature_1.0.1.jar" id="fr.kazejiyu.discord.rpc.integration.feature" version="1.0.1">
<feature url="features/fr.kazejiyu.discord.rpc.integration.feature_1.0.3.jar" id="fr.kazejiyu.discord.rpc.integration.feature" version="1.0.3">
<category name="fr.kazejiyu.discord.rpc.integration"/>
</feature>
<feature url="features/fr.kazejiyu.discord.rpc.integration.ui.feature_1.0.1.jar" id="fr.kazejiyu.discord.rpc.integration.ui.feature" version="1.0.1">
<feature url="features/fr.kazejiyu.discord.rpc.integration.ui.feature_1.0.3.jar" id="fr.kazejiyu.discord.rpc.integration.ui.feature" version="1.0.3">
<category name="fr.kazejiyu.discord.rpc.integration"/>
</feature>
<category-def name="fr.kazejiyu.discord.rpc.integration" label="Discord Rich Presence Integration">
Expand Down
2 changes: 1 addition & 1 deletion releng/fr.kazejiyu.discord.rpc.integration.p2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>fr.kazejiyu.discord.rpc.integration.releng</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
</parent>

<artifactId>fr.kazejiyu.discord.rpc.integration.p2</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion releng/fr.kazejiyu.discord.rpc.integration.target/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<parent>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>fr.kazejiyu.discord.rpc.integration.releng</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
</parent>
</project>
2 changes: 1 addition & 1 deletion releng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>fr.kazejiyu.discord.rpc.integration.root</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
</parent>

<modules>
Expand Down
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: Discord Rich Presence for Eclipse IDE — Default Adapters (Tests)
Bundle-SymbolicName: fr.kazejiyu.discord.rpc.integration.adapters.tests
Bundle-Version: 1.0.1
Bundle-Version: 1.0.3
Bundle-Vendor: Emmanuel CHEBBI
Fragment-Host: fr.kazejiyu.discord.rpc.integration.adapters;bundle-version="0.8.4"
Automatic-Module-Name: fr.kazejiyu.discord.rpc.integration.adapters.tests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<parent>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>tests</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
</parent>
</project>
10 changes: 5 additions & 5 deletions tests/fr.kazejiyu.discord.rpc.integration.tests.report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>tests</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
</parent>

<profiles>
Expand Down Expand Up @@ -41,25 +41,25 @@
<dependency>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>fr.kazejiyu.discord.rpc.integration</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>fr.kazejiyu.discord.rpc.integration.tests</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>fr.kazejiyu.discord.rpc.integration.adapters</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>fr.kazejiyu.discord.rpc.integration.adapters.tests</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
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: Discord Rich Presence for Eclipse IDE (Tests)
Bundle-SymbolicName: fr.kazejiyu.discord.rpc.integration.tests
Bundle-Version: 1.0.1
Bundle-Version: 1.0.3
Bundle-Vendor: Emmanuel CHEBBI
Fragment-Host: fr.kazejiyu.discord.rpc.integration;bundle-version="0.8.4"
Automatic-Module-Name: fr.kazejiyu.discord.rpc.integration.tests
Expand Down
2 changes: 1 addition & 1 deletion tests/fr.kazejiyu.discord.rpc.integration.tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<parent>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>tests</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
</parent>
</project>
4 changes: 2 additions & 2 deletions tests/org.assertj/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Assertj
Bundle-Name: AssertJ
Bundle-SymbolicName: org.assertj
Bundle-Version: 1.0.1
Bundle-Version: 3.9.0
Bundle-ClassPath: assertj-core-3.9.0.jar
Export-Package: org.assertj.core.api,
org.assertj.core.api.exception,
Expand Down
2 changes: 1 addition & 1 deletion tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>fr.kazejiyu.discord.rpc.integration</groupId>
<artifactId>fr.kazejiyu.discord.rpc.integration.root</artifactId>
<version>1.0.1</version>
<version>1.0.3</version>
</parent>

<modules>
Expand Down

0 comments on commit b096ccd

Please sign in to comment.