Skip to content

Commit

Permalink
Merge branch 'master' into opentracing
Browse files Browse the repository at this point in the history
  • Loading branch information
sdwr98 committed Apr 2, 2020
2 parents 298e8cf + 61bb553 commit fb5d4bc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## v2.7.1
- Fix a bug in build.gradle that prevented javadoc and sources from being published

## v2.7.0
- Add ParentClosePolicy to child workflows and also expose parent execution info for child workflows
- Add context propagation
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ Add *cadence-client* as a dependency to your *pom.xml*:
<dependency>
<groupId>com.uber.cadence</groupId>
<artifactId>cadence-client</artifactId>
<version>2.7.0</version>
<version>2.7.1</version>
</dependency>

or to *build.gradle*:

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

## Documentation

Expand Down
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ googleJavaFormat {
}

group = 'com.uber.cadence'
version = '2.7.0'
version = '2.7.1'

description = '''Uber Cadence Java Client'''

Expand Down Expand Up @@ -132,10 +132,12 @@ javadoc {
}

task javadocJar(type: Jar) {
archiveClassifier = 'javadoc'
from javadoc
}

task sourcesJar(type: Jar, dependsOn: classes) {
archiveClassifier = 'sources'
from sourceSets.main.allSource
}

Expand Down

0 comments on commit fb5d4bc

Please sign in to comment.