Skip to content

Commit d689588

Browse files
author
Stephen Asbury
authored
Merge pull request #234 from nats-io/2.4.5
Cleanup for rename to nats.java
2 parents 71511a2 + f9d73a7 commit d689588

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

.travis/deploying.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The global/secure values are used to deploy, they can be regenerated/created by
5252
the sonatype repository
5353

5454
You can use --add or copy and paste to the global section manually.
55-
I had issues with the repo, so you may want to add -r nats-io/java-nats
55+
I had issues with the repo, so you may want to add -r nats-io/nats.java
5656

5757
```bash
5858
> cd java-nats

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11

22
# Change Log
33

4+
## Version 2.4.5
5+
6+
* Clean up for rename to nats.java
7+
48
## Version 2.4.4
59

610
* [FIXED] - #230 - removed extra executor allocation

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
A [Java](http://java.com) client for the [NATS messaging system](https://nats.io).
66

77
[![License Apache 2](https://img.shields.io/badge/License-Apache2-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
8-
[![Build Status](https://travis-ci.org/nats-io/java-nats.svg?branch=master)](http://travis-ci.org/nats-io/java-nats?branch=master)
9-
[![Coverage Status](https://coveralls.io/repos/nats-io/java-nats/badge.svg?branch=master&service=github)](https://coveralls.io/github/nats-io/java-nats?branch=master)
8+
[![Build Status](https://travis-ci.org/nats-io/nats.java.svg?branch=master)](http://travis-ci.org/nats-io/nats.java?branch=master)
9+
[![Coverage Status](https://coveralls.io/repos/nats-io/nats.java/badge.svg?branch=master&service=github)](https://coveralls.io/github/nats-io/nats.java?branch=master)
1010
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.nats/jnats/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.nats/jnats)
1111
[![Javadoc](http://javadoc.io/badge/io.nats/jnats.svg?branch=master)](http://javadoc.io/doc/io.nats/jnats?branch=master)
1212

@@ -345,7 +345,7 @@ Final memory usage is 317.62 mb / 960.50 mb / 960.50 mb free/total/max
345345
The build depends on Gradle, and contains `gradlew` to simplify the process. After cloning, you can build the repository and run the tests with a single command:
346346

347347
```bash
348-
> git clone https://github.com/nats-io/java-nats.git
348+
> git clone https://github.com/nats-io/nats.java.git
349349
> cd java-nats
350350
> ./gradlew build
351351
```

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ uploadArchives {
194194
name 'jnats'
195195
packaging 'jar'
196196
description 'Client library for working with the NATS messaging system.'
197-
url 'https://github.com/nats-io/java-nats'
197+
url 'https://github.com/nats-io/nats.java'
198198
licenses {
199199
license {
200200
name = 'The Apache License, Version 2.0'
@@ -210,7 +210,7 @@ uploadArchives {
210210
}
211211
}
212212
scm {
213-
url = 'https://github.com/nats-io/java-nats'
213+
url = 'https://github.com/nats-io/nats.java'
214214
}
215215
}
216216
}

src/main/java/io/nats/client/Options.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
import java.util.List;
1717
import java.util.Properties;
1818
import java.util.concurrent.ExecutorService;
19-
import java.util.concurrent.Executors;
2019
import java.util.concurrent.SynchronousQueue;
2120
import java.util.concurrent.ThreadFactory;
2221
import java.util.concurrent.ThreadPoolExecutor;

src/main/java/io/nats/client/impl/MessageQueue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ NatsMessage waitForTimeout(Duration timeout) throws InterruptedException {
179179
}
180180

181181
// Thread.sleep(1000) <- use this to test the "isEmpty" fix below
182-
// see https://github.com/nats-io/java-nats/issues/220 for discussion
182+
// see https://github.com/nats-io/nats.java/issues/220 for discussion
183183

184184
// once we are in the waiters, we can be signaled, but
185185
// until then we can't, so there is a possible timing bug

0 commit comments

Comments
 (0)