Skip to content

Commit

Permalink
chore(release): v3.1.3 (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdeansanchez committed Mar 25, 2021
1 parent 97f1fda commit 54cde03
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [v3.1.3](https://github.com/imgix/js-core/compare/v3.1.2...v3.1.3) (2021-03-25)

* build: declare esm as devDep ([#273](https://github.com/imgix/js-core/pull/273))

## [v3.1.2](https://github.com/imgix/js-core/compare/v3.1.1...v3.1.2) (2021-03-25)

* fix: improve error messages for target width validator ([#267](https://github.com/imgix/js-core/pull/267))
Expand Down
2 changes: 1 addition & 1 deletion dist/imgix-js-core.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function _nonIterableRest() {
}

// package version used in the ix-lib parameter
var VERSION = 'v3.1.2'; // regex pattern used to determine if a domain is valid
var VERSION = 'v3.1.3'; // regex pattern used to determine if a domain is valid

var 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}$/i; // minimum generated srcset width

Expand Down
2 changes: 1 addition & 1 deletion dist/index.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function _nonIterableRest() {
}

// package version used in the ix-lib parameter
var VERSION = 'v3.1.2'; // regex pattern used to determine if a domain is valid
var VERSION = 'v3.1.3'; // regex pattern used to determine if a domain is valid

var 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}$/i; // minimum generated srcset width

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@imgix/js-core",
"description": "A JavaScript client library for generating image URLs with imgix",
"version": "v3.1.2",
"version": "v3.1.3",
"repository": "https://github.com/imgix/js-core",
"license": "BSD-2-Clause",
"main": "dist/index.cjs.js",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// package version used in the ix-lib parameter
export const VERSION = 'v3.1.2';
export const VERSION = 'v3.1.3';
// regex pattern used to determine if a domain is valid
export const 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}$/i;
// minimum generated srcset width
Expand Down

0 comments on commit 54cde03

Please sign in to comment.