Skip to content

Commit

Permalink
Update the README for 0.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jchambers committed Jan 1, 2023
1 parent 959ab1e commit ab13800
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ If you use [Maven](http://maven.apache.org/), you can add Pushy to your project
<dependency>
<groupId>com.eatthepath</groupId>
<artifactId>pushy</artifactId>
<version>0.15.1</version>
<version>0.15.2</version>
</dependency>
```

If you don't use Maven (or something else that understands Maven dependencies, like Gradle), you can [download Pushy as a `.jar` file](https://github.com/jchambers/pushy/releases/download/pushy-0.15.1/pushy-0.15.1.jar) and add it to your project directly. You'll also need to make sure you have Pushy's runtime dependencies on your classpath. They are:
If you don't use Maven (or something else that understands Maven dependencies, like Gradle), you can [download Pushy as a `.jar` file](https://github.com/jchambers/pushy/releases/download/pushy-0.15.2/pushy-0.15.2.jar) and add it to your project directly. You'll also need to make sure you have Pushy's runtime dependencies on your classpath. They are:

- [netty 4.1.85](http://netty.io/)
- [slf4j 1.7](http://www.slf4j.org/) (and possibly an SLF4J binding, as described in the [logging](#logging) section below)
Expand Down Expand Up @@ -245,4 +245,4 @@ Callers may also provide a [`MockApnsServerListener`](https://pushy-apns.org/api

Pushy is available under the [MIT License](https://github.com/jchambers/pushy/blob/master/LICENSE.md).

The current version of Pushy is 0.15.1. It's fully functional and widely used in production environments, but the public API may change significantly before a 1.0 release.
The current version of Pushy is 0.15.2. It's fully functional and widely used in production environments, but the public API may change significantly before a 1.0 release.
2 changes: 1 addition & 1 deletion dropwizard-metrics-listener/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This module is an implementation of Pushy's [`ApnsClientMetricsListener`](https:
<dependency>
<groupId>com.eatthepath</groupId>
<artifactId>pushy-dropwizard-metrics-listener</artifactId>
<version>0.14.1</version>
<version>0.15.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gson-payload-builder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This module provides an [`ApnsPayloadBuilder`](https://pushy-apns.org/apidocs/0.
<dependency>
<groupId>com.eatthepath</groupId>
<artifactId>pushy-gson-payload-builder</artifactId>
<version>0.14.1</version>
<version>0.15.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion jackson-payload-builder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This module provides an [`ApnsPayloadBuilder`](https://pushy-apns.org/apidocs/0.
<dependency>
<groupId>com.eatthepath</groupId>
<artifactId>pushy-jackson-payload-builder</artifactId>
<version>0.14.1</version>
<version>0.15.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion micrometer-metrics-listener/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This module is an implementation of Pushy's [`ApnsClientMetricsListener`](https:
<dependency>
<groupId>com.eatthepath</groupId>
<artifactId>pushy-micrometer-metrics-listener</artifactId>
<version>0.14.1</version>
<version>0.15.2</version>
</dependency>
```

Expand Down
2 changes: 2 additions & 0 deletions pushy/src/main/java/com/eatthepath/pushy/apns/PushType.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,8 @@ public enum PushType {
* {@linkplain DeliveryPriority#IMMEDIATE immediate delivery priority} (see {@link ApnsPushNotification#getPriority()}
* and an immediate expiration (see {@link ApnsPushNotification#getExpiration()}.</p>
*
* @since 0.15.2
*
* @see <a href="https://developer.apple.com/documentation/pushtotalk/creating_a_push_to_talk_app">Creating a Push
* to Talk app</a>
*/
Expand Down

0 comments on commit ab13800

Please sign in to comment.