Skip to content

Commit 2ab6542

Browse files
author
Sherwin H
committed
chore(release): 2.1.0
1 parent b161d6a commit 2ab6542

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGELOG.md

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

4+
## Version 2.1.0 (_September 19, 2019_)
5+
* fix: add domain validation during URLBuilder initialization ([#33](https://github.com/imgix/imgix-java/pull/33))
6+
* feat: add srcset generation method ([#32](https://github.com/imgix/imgix-java/pull/32))
7+
48
## Version 2.0.0 (_May 17, 2019_)
59
* fix: remove deprecated domain sharding functionality ([#31](https://github.com/imgix/imgix-java/pull/31))
610
* refactor: rename `signWithLibraryParameter` to `includeLibraryParam` ([#30](https://github.com/imgix/imgix-java/pull/30))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
![imgix logo](https://assets.imgix.net/imgix-logo-web-2014.pdf?page=2&fm=png&w=200&h=200)
22

33
[![Build Status](https://travis-ci.org/imgix/imgix-java.png?branch=master)](https://travis-ci.org/imgix/imgix-java)
4-
[ ![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)
4+
[ ![Download](https://api.bintray.com/packages/imgix/maven/imgix-java/images/download.svg?version=2.1.0) ](https://bintray.com/imgix/maven/imgix-java/2.1.0/link)
55

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

2222
```
2323
dependencies {
24-
compile "com.imgix:imgix-java:2.0.0"
24+
compile "com.imgix:imgix-java:2.1.0"
2525
}
2626
```
2727

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ apply plugin: 'maven'
66
apply plugin: 'maven-publish'
77

88
group = 'com.imgix'
9-
version = '2.0.0'
9+
version = '2.1.0'
1010

1111
description = """Imgix Java Client"""
1212

@@ -31,7 +31,7 @@ bintray {
3131
licenses = ['BSD 2-Clause']
3232
vcsUrl = 'https://github.com/imgix/imgix-java.git'
3333
version {
34-
name = '2.0.0'
34+
name = '2.1.0'
3535
}
3636
configurations = ['archives']
3737
}

src/main/java/com/imgix/URLBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
public class URLBuilder {
99

10-
public static final String VERSION = "2.0.0";
10+
public static final String VERSION = "2.1.0";
1111
private static final String DOMAIN_REGEX = "^(?:[a-z\\d\\-_]{1,62}\\.){0,125}(?:[a-z\\d](?:\\-(?=\\-*[a-z\\d])|[a-z]|\\d){0,62}\\.)[a-z\\d]{1,63}$";
1212

1313
private String domain;

0 commit comments

Comments
 (0)