Skip to content

Commit

Permalink
chore(release): 3.6.0
Browse files Browse the repository at this point in the history
# [3.6.0](v3.5.1...v3.6.0) (2022-07-14)

### Features

* **imgixtag:** optional class nolazyload to selectively disable lazy loading ([98efb8c](98efb8c))

 [skip ci]
  • Loading branch information
imgix-git-robot committed Jul 14, 2022
1 parent 1bfbdaf commit 215a55e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
17 changes: 13 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "imgix.js",
"version": "3.5.1",
"version": "3.6.0",
"description": "imgix.js is a dependency-free JavaScript library that allows you to easily use the imgix API to make images on your site or app responsive to device size and pixel density. imgix.js allows for intuitive use of imgix features such as text formatting, color palette extraction, color adjustments, effects, and watermarking. imgix.js requires an imgix account to use your own images. Sign up at imgix.com",
"license": "BSD-2-Clause",
"repository": {
Expand Down Expand Up @@ -64,9 +64,18 @@
"release": {
"branches": [
"main",
{ "name": "next", "prerelease": "rc" },
{ "name": "beta", "prerelease": true },
{ "name": "alpha", "prerelease": true }
{
"name": "next",
"prerelease": "rc"
},
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
Expand Down
2 changes: 1 addition & 1 deletion src/imgix.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var ImgixTag = require('./ImgixTag.js'),
util = require('./util.js'),
defaultConfig = require('./defaultConfig');

var VERSION = '3.5.1';
var VERSION = "3.6.0";

global.imgix = {
init: function (opts) {
Expand Down

0 comments on commit 215a55e

Please sign in to comment.