diff --git a/CHANGELOG.md b/CHANGELOG.md
index 31bffcc..0f980c1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/bundles/fr.kazejiyu.discord.rpc.integration.adapters/META-INF/MANIFEST.MF b/bundles/fr.kazejiyu.discord.rpc.integration.adapters/META-INF/MANIFEST.MF
index c78dd13..447762b 100644
--- a/bundles/fr.kazejiyu.discord.rpc.integration.adapters/META-INF/MANIFEST.MF
+++ b/bundles/fr.kazejiyu.discord.rpc.integration.adapters/META-INF/MANIFEST.MF
@@ -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",
diff --git a/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/META-INF/MANIFEST.MF b/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/META-INF/MANIFEST.MF
index 10db354..873d33e 100644
--- a/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/META-INF/MANIFEST.MF
+++ b/bundles/fr.kazejiyu.discord.rpc.integration.ui.preferences/META-INF/MANIFEST.MF
@@ -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)",
diff --git a/bundles/fr.kazejiyu.discord.rpc.integration/META-INF/MANIFEST.MF b/bundles/fr.kazejiyu.discord.rpc.integration/META-INF/MANIFEST.MF
index 34c03b8..b403da9 100644
--- a/bundles/fr.kazejiyu.discord.rpc.integration/META-INF/MANIFEST.MF
+++ b/bundles/fr.kazejiyu.discord.rpc.integration/META-INF/MANIFEST.MF
@@ -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)",
diff --git a/bundles/java-discord-rpc/pom.xml b/bundles/java-discord-rpc/pom.xml
index 395f935..5c86129 100644
--- a/bundles/java-discord-rpc/pom.xml
+++ b/bundles/java-discord-rpc/pom.xml
@@ -5,7 +5,7 @@
fr.kazejiyu.discord.rpc.integration
fr.kazejiyu.discord.rpc.integration.bundles
- 1.0.1
+ 1.0.3
java-discord-rpc
diff --git a/bundles/pom.xml b/bundles/pom.xml
index ea27dcb..3e937ad 100644
--- a/bundles/pom.xml
+++ b/bundles/pom.xml
@@ -7,7 +7,7 @@
fr.kazejiyu.discord.rpc.integration
fr.kazejiyu.discord.rpc.integration.root
- 1.0.1
+ 1.0.3
diff --git a/features/fr.kazejiyu.discord.rpc.integration.feature/feature.xml b/features/fr.kazejiyu.discord.rpc.integration.feature/feature.xml
index f8b03d9..ab51a58 100644
--- a/features/fr.kazejiyu.discord.rpc.integration.feature/feature.xml
+++ b/features/fr.kazejiyu.discord.rpc.integration.feature/feature.xml
@@ -2,7 +2,7 @@
@@ -312,14 +312,14 @@ version(s), and exceptions or additional permissions here}."
id="fr.kazejiyu.discord.rpc.integration.adapters"
download-size="0"
install-size="0"
- version="1.0.1"
+ version="1.0.3"
unpack="false"/>
diff --git a/features/fr.kazejiyu.discord.rpc.integration.ui.feature/feature.xml b/features/fr.kazejiyu.discord.rpc.integration.ui.feature/feature.xml
index b162f53..50d23c2 100644
--- a/features/fr.kazejiyu.discord.rpc.integration.ui.feature/feature.xml
+++ b/features/fr.kazejiyu.discord.rpc.integration.ui.feature/feature.xml
@@ -2,7 +2,7 @@
@@ -304,7 +304,7 @@ version(s), and exceptions or additional permissions here}."
id="fr.kazejiyu.discord.rpc.integration.ui.preferences"
download-size="0"
install-size="0"
- version="1.0.1"
+ version="1.0.3"
unpack="false"/>
diff --git a/features/pom.xml b/features/pom.xml
index 332f597..50c7170 100644
--- a/features/pom.xml
+++ b/features/pom.xml
@@ -7,7 +7,7 @@
fr.kazejiyu.discord.rpc.integration
fr.kazejiyu.discord.rpc.integration.root
- 1.0.1
+ 1.0.3
diff --git a/pom.xml b/pom.xml
index b56232b..5ce24cd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
fr.kazejiyu.discord.rpc.integration.root
fr.kazejiyu.discord.rpc.integration
- 1.0.1
+ 1.0.3
pom
@@ -69,7 +69,7 @@
fr.kazejiyu.discord.rpc.integration
fr.kazejiyu.discord.rpc.integration.target
- 1.0.1
+ 1.0.3
diff --git a/releng/fr.kazejiyu.discord.rpc.integration.p2/category.xml b/releng/fr.kazejiyu.discord.rpc.integration.p2/category.xml
index c9527e1..9e95f3e 100644
--- a/releng/fr.kazejiyu.discord.rpc.integration.p2/category.xml
+++ b/releng/fr.kazejiyu.discord.rpc.integration.p2/category.xml
@@ -1,9 +1,9 @@
-
+
-
+
diff --git a/releng/fr.kazejiyu.discord.rpc.integration.p2/pom.xml b/releng/fr.kazejiyu.discord.rpc.integration.p2/pom.xml
index a2d59b7..6c557df 100644
--- a/releng/fr.kazejiyu.discord.rpc.integration.p2/pom.xml
+++ b/releng/fr.kazejiyu.discord.rpc.integration.p2/pom.xml
@@ -7,7 +7,7 @@
fr.kazejiyu.discord.rpc.integration
fr.kazejiyu.discord.rpc.integration.releng
- 1.0.1
+ 1.0.3
fr.kazejiyu.discord.rpc.integration.p2
diff --git a/releng/fr.kazejiyu.discord.rpc.integration.target/pom.xml b/releng/fr.kazejiyu.discord.rpc.integration.target/pom.xml
index 36f8eb2..906d6ad 100644
--- a/releng/fr.kazejiyu.discord.rpc.integration.target/pom.xml
+++ b/releng/fr.kazejiyu.discord.rpc.integration.target/pom.xml
@@ -7,6 +7,6 @@
fr.kazejiyu.discord.rpc.integration
fr.kazejiyu.discord.rpc.integration.releng
- 1.0.1
+ 1.0.3
diff --git a/releng/pom.xml b/releng/pom.xml
index ccb4afc..1eb839b 100644
--- a/releng/pom.xml
+++ b/releng/pom.xml
@@ -7,7 +7,7 @@
fr.kazejiyu.discord.rpc.integration
fr.kazejiyu.discord.rpc.integration.root
- 1.0.1
+ 1.0.3
diff --git a/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/META-INF/MANIFEST.MF b/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/META-INF/MANIFEST.MF
index 2de163d..e93ea08 100644
--- a/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/META-INF/MANIFEST.MF
+++ b/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/META-INF/MANIFEST.MF
@@ -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
diff --git a/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/pom.xml b/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/pom.xml
index c70d747..f72d738 100644
--- a/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/pom.xml
+++ b/tests/fr.kazejiyu.discord.rpc.integration.adapters.tests/pom.xml
@@ -7,6 +7,6 @@
fr.kazejiyu.discord.rpc.integration
tests
- 1.0.1
+ 1.0.3
\ No newline at end of file
diff --git a/tests/fr.kazejiyu.discord.rpc.integration.tests.report/pom.xml b/tests/fr.kazejiyu.discord.rpc.integration.tests.report/pom.xml
index 82f9a0a..14651ae 100644
--- a/tests/fr.kazejiyu.discord.rpc.integration.tests.report/pom.xml
+++ b/tests/fr.kazejiyu.discord.rpc.integration.tests.report/pom.xml
@@ -8,7 +8,7 @@
fr.kazejiyu.discord.rpc.integration
tests
- 1.0.1
+ 1.0.3
@@ -41,25 +41,25 @@
fr.kazejiyu.discord.rpc.integration
fr.kazejiyu.discord.rpc.integration
- 1.0.1
+ 1.0.3
compile
fr.kazejiyu.discord.rpc.integration
fr.kazejiyu.discord.rpc.integration.tests
- 1.0.1
+ 1.0.3
test
fr.kazejiyu.discord.rpc.integration
fr.kazejiyu.discord.rpc.integration.adapters
- 1.0.1
+ 1.0.3
compile
fr.kazejiyu.discord.rpc.integration
fr.kazejiyu.discord.rpc.integration.adapters.tests
- 1.0.1
+ 1.0.3
test
diff --git a/tests/fr.kazejiyu.discord.rpc.integration.tests/META-INF/MANIFEST.MF b/tests/fr.kazejiyu.discord.rpc.integration.tests/META-INF/MANIFEST.MF
index ab87004..e32890c 100644
--- a/tests/fr.kazejiyu.discord.rpc.integration.tests/META-INF/MANIFEST.MF
+++ b/tests/fr.kazejiyu.discord.rpc.integration.tests/META-INF/MANIFEST.MF
@@ -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
diff --git a/tests/fr.kazejiyu.discord.rpc.integration.tests/pom.xml b/tests/fr.kazejiyu.discord.rpc.integration.tests/pom.xml
index 80184ed..120d142 100644
--- a/tests/fr.kazejiyu.discord.rpc.integration.tests/pom.xml
+++ b/tests/fr.kazejiyu.discord.rpc.integration.tests/pom.xml
@@ -7,6 +7,6 @@
fr.kazejiyu.discord.rpc.integration
tests
- 1.0.1
+ 1.0.3
\ No newline at end of file
diff --git a/tests/org.assertj/META-INF/MANIFEST.MF b/tests/org.assertj/META-INF/MANIFEST.MF
index d958527..30ba530 100644
--- a/tests/org.assertj/META-INF/MANIFEST.MF
+++ b/tests/org.assertj/META-INF/MANIFEST.MF
@@ -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,
diff --git a/tests/pom.xml b/tests/pom.xml
index fbfba45..1c79d00 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -7,7 +7,7 @@
fr.kazejiyu.discord.rpc.integration
fr.kazejiyu.discord.rpc.integration.root
- 1.0.1
+ 1.0.3