Skip to content

Commit

Permalink
Merge pull request #103 from nats-io/v2.1.1
Browse files Browse the repository at this point in the history
Moved dependency to 2.1
  • Loading branch information
sasbury authored Sep 19, 2018
2 parents 80bf55b + 224956d commit 7ef6d7a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## Version 2.1.1

* [Changed] Dependency on java nats to 2.1.0
* [Fixed] A couple issues with versions in jars

## Version 2.1.0

* [Added] Added named dispatchers to subscriptions to allow application control of callback threads
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
// Update version here, repeated check-ins not into master will have snapshot on them
def versionMajor = 2
def versionMinor = 1
def versionPatch = 0
def versionPatch = 1
def versionModifier = ""
def branch = System.getenv("TRAVIS_BRANCH");

Expand Down Expand Up @@ -56,7 +56,7 @@ dependencies {

testImplementation 'junit:junit:4.12'

implementation 'io.nats:jnats:[2.0.0,)'
implementation 'io.nats:jnats:[2.1.0,)'
}

sourceSets {
Expand Down Expand Up @@ -104,7 +104,7 @@ clean {
jar {
manifest {
attributes('Implementation-Title': 'Java Nats Streaming',
'Implementation-Version': '2.0.1',
'Implementation-Version': '2.1.1',
'Implementation-Vendor': 'nats.io')
}
exclude("io/nats/streaming/examples/**")
Expand Down Expand Up @@ -146,7 +146,7 @@ task examplesJar(type: Jar) {
classifier = 'examples'
manifest {
attributes('Implementation-Title': 'Java Nats Streaming Examples',
'Implementation-Version': '2.0.1',
'Implementation-Version': '2.1.1',
'Implementation-Vendor': 'nats.io')
}
from(sourceSets.main.output) {
Expand Down

0 comments on commit 7ef6d7a

Please sign in to comment.