Skip to content

Commit

Permalink
chore(release): 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sherwin H committed Jun 19, 2019
1 parent 0c21ba6 commit 59ac797
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change Log
==========

## Version 2.0.0 (_May 17, 2019_)
* fix: remove deprecated domain sharding functionality ([#31](https://github.com/imgix/imgix-java/pull/31))
* refactor: rename `signWithLibraryParameter` to `includeLibraryParam` ([#30](https://github.com/imgix/imgix-java/pull/30))

## Version 1.2.0 (_May 17, 2019_)
* fix: deprecate domain sharding ([#29](https://github.com/imgix/imgix-java/pull/29))

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![imgix logo](https://assets.imgix.net/imgix-logo-web-2014.pdf?page=2&fm=png&w=200&h=200)

[![Build Status](https://travis-ci.org/imgix/imgix-java.png?branch=master)](https://travis-ci.org/imgix/imgix-java)
[ ![Download](https://api.bintray.com/packages/imgix/maven/imgix-java/images/download.svg?version=1.2.0) ](https://bintray.com/imgix/maven/imgix-java/1.2.0/link)
[ ![Download](https://api.bintray.com/packages/imgix/maven/imgix-java/images/download.svg?version=2.0.0) ](https://bintray.com/imgix/maven/imgix-java/2.0.0/link)

A Java client library for generating URLs with imgix. imgix is a high-performance
distributed image processing service. More information can be found at
Expand All @@ -21,7 +21,7 @@ To add Imgix-Java to your project, include the following in your project's build

```
dependencies {
compile "com.imgix:imgix-java:1.2.0"
compile "com.imgix:imgix-java:2.0.0"
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ apply plugin: 'maven'
apply plugin: 'maven-publish'

group = 'com.imgix'
version = '1.2.0'
version = '2.0.0'

description = """Imgix Java Client"""

Expand All @@ -31,7 +31,7 @@ bintray {
licenses = ['BSD 2-Clause']
vcsUrl = 'https://github.com/imgix/imgix-java.git'
version {
name = '1.2.0'
name = '2.0.0'
}
configurations = ['archives']
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/imgix/URLBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

public class URLBuilder {

public static final String VERSION = "1.2.0";
public static final String VERSION = "2.0.0";

private String domain;
private boolean useHttps;
Expand Down

0 comments on commit 59ac797

Please sign in to comment.