Skip to content

Commit fb5d4bc

Browse files
committed
Merge branch 'master' into opentracing
2 parents 298e8cf + 61bb553 commit fb5d4bc

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v2.7.1
4+
- Fix a bug in build.gradle that prevented javadoc and sources from being published
5+
36
## v2.7.0
47
- Add ParentClosePolicy to child workflows and also expose parent execution info for child workflows
58
- Add context propagation

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ Add *cadence-client* as a dependency to your *pom.xml*:
3131
<dependency>
3232
<groupId>com.uber.cadence</groupId>
3333
<artifactId>cadence-client</artifactId>
34-
<version>2.7.0</version>
34+
<version>2.7.1</version>
3535
</dependency>
3636

3737
or to *build.gradle*:
3838

39-
compile group: 'com.uber.cadence', name: 'cadence-client', version: '2.7.0'
39+
compile group: 'com.uber.cadence', name: 'cadence-client', version: '2.7.1'
4040

4141
## Documentation
4242

build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ googleJavaFormat {
3737
}
3838

3939
group = 'com.uber.cadence'
40-
version = '2.7.0'
40+
version = '2.7.1'
4141

4242
description = '''Uber Cadence Java Client'''
4343

@@ -132,10 +132,12 @@ javadoc {
132132
}
133133

134134
task javadocJar(type: Jar) {
135+
archiveClassifier = 'javadoc'
135136
from javadoc
136137
}
137138

138139
task sourcesJar(type: Jar, dependsOn: classes) {
140+
archiveClassifier = 'sources'
139141
from sourceSets.main.allSource
140142
}
141143

0 commit comments

Comments
 (0)