Skip to content

Commit

Permalink
chore(release): 2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sherwinski authored and sherwinski committed Nov 3, 2020
1 parent 1202a78 commit 7f4a036
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 8 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Change Log
# Changelog

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.

### [2.3.3](https://github.com/imgix/luminous/compare/v2.3.2...v2.3.3) (2020-11-02)


### Bug Fixes

* allow "closeWithEscape" and "injectBaseStyles" to be overriden when initializing ([fd7dde8](https://github.com/imgix/luminous/commit/fd7dde8aacdbc33771f36b2f2c3485e42b6d9fdc))

<a name="2.3.2"></a>
## [2.3.2](https://github.com/imgix/luminous/compare/v2.3.1...v2.3.2) (2018-12-02)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "luminous",
"version": "2.3.2",
"version": "2.3.3",
"description": "A simple, lightweight, no-dependencies JavaScript image lightbox.",
"main": [
"dist/Luminous.min.js",
Expand Down
2 changes: 1 addition & 1 deletion dist/Luminous.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/Luminous.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/luminous.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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,6 +1,6 @@
{
"name": "luminous-lightbox",
"version": "2.3.2",
"version": "2.3.3",
"description": "A simple, lightweight, no-dependencies JavaScript image lightbox.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/js/Luminous.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class Luminous {
* @param {Object=} options Luminous options
*/
constructor(trigger, options = {}) {
this.VERSION = "2.3.2";
this.VERSION = "2.3.3";
this.destroy = this.destroy.bind(this);
this.open = this.open.bind(this);
this.close = this.close.bind(this);
Expand Down

0 comments on commit 7f4a036

Please sign in to comment.