Skip to content

Commit a673a13

Browse files
Magesh Chandramouliashishagg
authored andcommitted
1.0.7 snapshot (#231)
* updating POM to match version to be released * updating POM to match version to be released
1 parent b0353c1 commit a673a13

File tree

9 files changed

+19
-18
lines changed

9 files changed

+19
-18
lines changed

Release.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ Currently we publish the repo to docker hub and nexus central repository.
55

66
* Git tagging:
77

8-
```git tag -a 1.x.x -m "Release description..."```
8+
```
9+
git tag -a <tag name> -m "Release description..."
10+
git push origin <tag name>
11+
```
912

10-
Or you can also tag using UI: https://github.com/ExpediaDotCom/haystack-traces/releases
13+
`<tag name>` must follow semantic versioning scheme.
14+
15+
Or one can also tag using UI: https://github.com/ExpediaDotCom/haystack-traces/releases
16+
17+
It is preferred to create an annotated tag using `git tag -a` and then use the release UI to add release notes for the tag.
18+
19+
* After the release is completed, please update the `pom.xml` files to next `-SNAPSHOT` version to match the next release

backends/cassandra/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>haystack-trace-backends</artifactId>
77
<groupId>com.expedia.www</groupId>
8-
<version>1.0.0-SNAPSHOT</version>
8+
<version>1.0.7-SNAPSHOT</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

backends/memory/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>haystack-trace-backends</artifactId>
77
<groupId>com.expedia.www</groupId>
8-
<version>1.0.0-SNAPSHOT</version>
8+
<version>1.0.7-SNAPSHOT</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

backends/memory/src/main/resources/logback.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,6 @@
2121
<appender-ref ref="STDOUT" />
2222
</appender>
2323

24-
<appender name="EmitToGraphiteLogbackAppender"
25-
class="com.expedia.www.haystack.metrics.appenders.logback.EmitToGraphiteLogbackAppender">
26-
<enabled>${HAYSTACK_GRAPHITE_ENABLED:-true}</enabled>
27-
<host>${HAYSTACK_GRAPHITE_HOST}</host>
28-
<port>${HAYSTACK_GRAPHITE_PORT}</port>
29-
<subsystem>trace-reader</subsystem>
30-
</appender>
31-
3224
<root level="${HAYSTACK_LOG_LEVEL:-INFO}">
3325
<appender-ref ref="ASYNC" />
3426
<appender-ref ref="EmitToGraphiteLogbackAppender" />

backends/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>haystack-trace-backends</artifactId>
7-
<version>1.0.0-SNAPSHOT</version>
7+
<version>1.0.7-SNAPSHOT</version>
88
<packaging>pom</packaging>
99

1010
<parent>
1111
<artifactId>haystack-traces</artifactId>
1212
<groupId>com.expedia.www</groupId>
13-
<version>1.0.0-SNAPSHOT</version>
13+
<version>1.0.7-SNAPSHOT</version>
1414
<relativePath>../pom.xml</relativePath>
1515
</parent>
1616

commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>haystack-traces</artifactId>
66
<groupId>com.expedia.www</groupId>
7-
<version>1.0.0-SNAPSHOT</version>
7+
<version>1.0.7-SNAPSHOT</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

indexer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>haystack-traces</artifactId>
66
<groupId>com.expedia.www</groupId>
7-
<version>1.0.0-SNAPSHOT</version>
7+
<version>1.0.7-SNAPSHOT</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.expedia.www</groupId>
77
<artifactId>haystack-traces</artifactId>
8-
<version>1.0.0-SNAPSHOT</version>
8+
<version>1.0.7-SNAPSHOT</version>
99
<packaging>pom</packaging>
1010

1111
<modules>

reader/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>haystack-traces</artifactId>
77
<groupId>com.expedia.www</groupId>
8-
<version>1.0.0-SNAPSHOT</version>
8+
<version>1.0.7-SNAPSHOT</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)