Skip to content
This repository was archived by the owner on Jan 19, 2023. It is now read-only.

Commit 4f285e7

Browse files
committed
chore(release): 5.1.1
1 parent 72ab3f9 commit 4f285e7

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
1-
# Change Log
1+
# Changelog
22

33
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.
44

5+
### [5.1.1](https://github.com/frontend-collective/react-image-lightbox/compare/v5.1.0...v5.1.1) (2019-11-12)
6+
7+
8+
### Bug Fixes
9+
10+
* allow React.ReactNode as imageTitle and imageCaption in TypeScript projects ([#158](https://github.com/frontend-collective/react-image-lightbox/issues/158)) ([f1858a3](https://github.com/frontend-collective/react-image-lightbox/commit/f1858a3efe25b66b850565b308688669bd7bab66))
11+
* demo parcel site on github pages ([822140e](https://github.com/frontend-collective/react-image-lightbox/commit/822140ed665f55f664c1a5ea851f6b3aeaed31db))
12+
* don't prevent default inside a passive listener ([b2b6a79](https://github.com/frontend-collective/react-image-lightbox/commit/b2b6a798671de7027635123baec8584e3fefaaf2))
13+
* fix getOrigin issue within iFrames ([#175](https://github.com/frontend-collective/react-image-lightbox/issues/175)) ([f290cb3](https://github.com/frontend-collective/react-image-lightbox/commit/f290cb344ac89f6359b39c0fd4ab8fe00bb36205)), closes [#136](https://github.com/frontend-collective/react-image-lightbox/issues/136)
14+
* fix lint ([c2acf2c](https://github.com/frontend-collective/react-image-lightbox/commit/c2acf2ccd86610ad89f3af497e4eefc911da68ac))
15+
516
<a name="5.1.0"></a>
617

718
# [5.1.0](https://github.com/frontend-collective/react-image-lightbox/compare/v5.0.0...v5.1.0) (2018-12-10)

package.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-image-lightbox",
3-
"version": "5.1.0",
3+
"version": "5.1.1",
44
"description": "A lightbox component for React.js",
55
"scripts": {
66
"build": "rollup -c",
@@ -13,7 +13,8 @@
1313
"prepublishOnly": "npm run lint && npm run test && npm run build",
1414
"test": "jest",
1515
"test:watch": "jest --watchAll",
16-
"deploy": "npm run build:demo && gh-pages -d build"
16+
"deploy": "npm run build:demo && gh-pages -d build",
17+
"release": "standard-version"
1718
},
1819
"main": "dist/index.cjs.js",
1920
"module": "dist/index.es.js",
@@ -35,7 +36,9 @@
3536
],
3637
"license": "MIT",
3738
"jest": {
38-
"setupFilesAfterEnv": ["./node_modules/jest-enzyme/lib/index.js"],
39+
"setupFilesAfterEnv": [
40+
"./node_modules/jest-enzyme/lib/index.js"
41+
],
3942
"setupFiles": [
4043
"./test-config/shim.js",
4144
"./test-config/test-setup.js"
@@ -95,7 +98,8 @@
9598
"rollup-plugin-babel": "^4.3.2",
9699
"rollup-plugin-commonjs": "^9.2.0",
97100
"rollup-plugin-node-resolve": "^4.0.0",
98-
"rollup-plugin-postcss": "^2.0.3"
101+
"rollup-plugin-postcss": "^2.0.3",
102+
"standard-version": "^7.0.0"
99103
},
100104
"keywords": [
101105
"react",

0 commit comments

Comments
 (0)