Skip to content

Commit

Permalink
Preparing release v1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Decker, Stefan <Stefan.Decker@gdata.de>
  • Loading branch information
StefanHufschmidt committed Feb 18, 2019
1 parent 2eca828 commit c556be4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
V 1.0
-----------
* Added possibility to pass custom labels and annotations to the AlertManager

V 0.1
-----------
* First draft for plugin
Expand Down
1 change: 1 addition & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Stefan Decker <Stefan.Decker@gdata.de>
Julian Schäfer <Julian.Schaefer@gdata.de>
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ serviceLoader {
}

group = 'de.gdata.mobilelab'
version = 0.1
version = 1.0

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down Expand Up @@ -74,7 +74,7 @@ dependencies {
jar {
archiveName = "graylog-plugin-alertmanagercallback-" + version + ".jar"
baseName = title
version = 0.1
version = 1.0
group = "de.gdata.mobilelab.alertmanagercallback"
manifest {
attributes(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public URI getURL() {

@Override
public Version getVersion() {
return Version.from(0, 1, 0);
return Version.from(1, 0, 0);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void getURL() {

@Test
public void getVersion() {
assertEquals(Version.from(0, 1, 0), new AlertManagerPluginMetaData().getVersion());
assertEquals(Version.from(1, 0, 0), new AlertManagerPluginMetaData().getVersion());
}

@Test
Expand Down

0 comments on commit c556be4

Please sign in to comment.