Skip to content

Commit

Permalink
docs: reflect 42.2.0 release in readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vlsi committed Jan 17, 2018
1 parent 7a02733 commit 6d02e95
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Expand Up @@ -23,46 +23,46 @@ Most people do not need to compile PgJDBC. You can download the precompiled driv
### Maven Central ### Maven Central
You can search on The Central Repository with GroupId and ArtifactId [![Maven Search](https://img.shields.io/badge/org.postgresql-postgresql-yellow.svg)][mvn-search] for: You can search on The Central Repository with GroupId and ArtifactId [![Maven Search](https://img.shields.io/badge/org.postgresql-postgresql-yellow.svg)][mvn-search] for:


[![Java 8](https://img.shields.io/badge/Java_8-42.1.4-blue.svg)][mvn-jre8] [![Java 8](https://img.shields.io/badge/Java_8-42.2.0-blue.svg)][mvn-jre8]
```xml ```xml
<dependency> <dependency>
<groupId>org.postgresql</groupId> <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId> <artifactId>postgresql</artifactId>
<version>42.1.4</version> <version>42.2.0</version>
</dependency> </dependency>
``` ```


[![Java 7](https://img.shields.io/badge/Java_7-42.1.4.jre7-blue.svg)][mvn-jre7] [![Java 7](https://img.shields.io/badge/Java_7-42.2.0.jre7-blue.svg)][mvn-jre7]
```xml ```xml
<dependency> <dependency>
<groupId>org.postgresql</groupId> <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId> <artifactId>postgresql</artifactId>
<version>42.1.4.jre7</version> <version>42.2.0.jre7</version>
</dependency> </dependency>
``` ```


[![Java 6](https://img.shields.io/badge/Java_6-42.1.4.jre6-blue.svg)][mvn-jre6] [![Java 6](https://img.shields.io/badge/Java_6-42.2.0.jre6-blue.svg)][mvn-jre6]
```xml ```xml
<dependency> <dependency>
<groupId>org.postgresql</groupId> <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId> <artifactId>postgresql</artifactId>
<version>42.1.4.jre6</version> <version>42.2.0.jre6</version>
</dependency> </dependency>
``` ```
[mvn-search]: http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.postgresql%22%20AND%20a%3A%22postgresql%22 "Search on Maven Central" [mvn-search]: http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.postgresql%22%20AND%20a%3A%22postgresql%22 "Search on Maven Central"
[mvn-jre6]: http://search.maven.org/#artifactdetails|org.postgresql|postgresql|42.1.4.jre6|bundle [mvn-jre6]: http://search.maven.org/#artifactdetails|org.postgresql|postgresql|42.2.0.jre6|bundle
[mvn-jre7]: http://search.maven.org/#artifactdetails|org.postgresql|postgresql|42.1.4.jre7|bundle [mvn-jre7]: http://search.maven.org/#artifactdetails|org.postgresql|postgresql|42.2.0.jre7|bundle
[mvn-jre8]: http://search.maven.org/#artifactdetails|org.postgresql|postgresql|42.1.4|bundle [mvn-jre8]: http://search.maven.org/#artifactdetails|org.postgresql|postgresql|42.2.0|bundle


#### Development snapshots #### Development snapshots
Snapshot builds (builds from `master` branch) are also deployed to Maven Central, so you can test current development version (test some bugfix) using: Snapshot builds (builds from `master` branch) are also deployed to Maven Central, so you can test current development version (test some bugfix) using:
```xml ```xml
<dependency> <dependency>
<groupId>org.postgresql</groupId> <groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId> <artifactId>postgresql</artifactId>
<version>42.1.5-SNAPSHOT</version> <!-- Java 8 --> <version>42.2.1-SNAPSHOT</version> <!-- Java 8 -->
<version>42.1.5.jre7-SNAPSHOT</version> <!-- Java 7 --> <version>42.2.1.jre7-SNAPSHOT</version> <!-- Java 7 -->
<version>42.1.5.jre6-SNAPSHOT</version> <!-- Java 6 --> <version>42.2.1.jre6-SNAPSHOT</version> <!-- Java 6 -->
</dependency> </dependency>
``` ```


Expand Down

0 comments on commit 6d02e95

Please sign in to comment.