Skip to content

Commit

Permalink
chore(release): 3.6.1
Browse files Browse the repository at this point in the history
## [3.6.1](v3.6.0...v3.6.1) (2022-10-11)

### Bug Fixes

* **deps:** update dependency ufo to ^0.8.0 ([6c0497b](6c0497b))

 [skip ci]
  • Loading branch information
imgix-git-robot committed Oct 11, 2022
1 parent ac6af10 commit 2966512
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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
Expand Up @@ -160,7 +160,7 @@ function _nonIterableRest() {
}

// package version used in the ix-lib parameter
var VERSION = '3.5.1'; // regex pattern used to determine if a domain is valid
var VERSION = '3.6.0'; // 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
Expand Up @@ -154,7 +154,7 @@ function _nonIterableRest() {
}

// package version used in the ix-lib parameter
var VERSION = '3.5.1'; // regex pattern used to determine if a domain is valid
var VERSION = '3.6.0'; // 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 package.json
@@ -1,7 +1,7 @@
{
"name": "@imgix/js-core",
"description": "A JavaScript client library for generating image URLs with imgix",
"version": "3.6.0",
"version": "3.6.1",
"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
@@ -1,5 +1,5 @@
// package version used in the ix-lib parameter
export const VERSION = '3.6.0';
export const VERSION = '3.6.1';
// 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 2966512

Please sign in to comment.