diff --git a/CHANGELOG.md b/CHANGELOG.md
index 667f2444..ad36f074 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,23 @@
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.
+
+# [1.0.0](https://github.com/researchgate/react-intersection-list/compare/v0.4.1...v1.0.0) (2017-11-24)
+
+
+### Features
+
+* **React16:** support for React 16 ([12ba423](https://github.com/researchgate/react-intersection-list/commit/12ba423))
+* **setRootNode:** save call to getComputedStyle if root node is unchanged ([80659dd](https://github.com/researchgate/react-intersection-list/commit/80659dd))
+
+
+### BREAKING CHANGES
+
+* **React16:** tag replaced by a tag.
+* **React16:** deprecation warning will not longer appear for itemsLength prop.
+
+
+
## [0.4.1](https://github.com/researchgate/react-intersection-list/compare/v0.4.0...v0.4.1) (2017-10-11)
diff --git a/package.json b/package.json
index 447f276a..a8902e90 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "@researchgate/react-intersection-list",
"description": "React List Component using the Intersection Observer API",
- "version": "0.4.1",
+ "version": "1.0.0",
"author": "Luis Merino ",
"bugs": {
"url": "https://github.com/researchgate/react-intersection-list/issues"
@@ -43,12 +43,26 @@
"validate-commit-msg": "^2.14.0",
"whatwg-fetch": "^2.0.3"
},
- "files": ["lib"],
+ "files": [
+ "lib"
+ ],
"homepage": "https://github.com/researchgate/react-intersection-list#readme",
- "keywords": ["Intersection", "Observer", "react", "component", "list", "infinite", "scrollable", "researchgate"],
+ "keywords": [
+ "Intersection",
+ "Observer",
+ "react",
+ "component",
+ "list",
+ "infinite",
+ "scrollable",
+ "researchgate"
+ ],
"license": "MIT",
"lint-staged": {
- "{src,docs/docs}/**/*.js": ["eslint --fix", "git add"]
+ "{src,docs/docs}/**/*.js": [
+ "eslint --fix",
+ "git add"
+ ]
},
"main": "lib/js/index.js",
"module": "lib/es/index.js",
@@ -62,15 +76,17 @@
},
"jest": {
"rootDir": "src",
- "testMatch": ["**/__tests__/**/*.spec.js"],
- "setupFiles": ["raf/polyfill"]
+ "testMatch": [
+ "**/__tests__/**/*.spec.js"
+ ],
+ "setupFiles": [
+ "raf/polyfill"
+ ]
},
"scripts": {
"build": "npm run build:js && npm run build:es",
- "build:js":
- "cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore __tests__ --copy-files",
- "build:es":
- "cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore __tests__ --copy-files",
+ "build:js": "cross-env BABEL_ENV=production BABEL_OUTPUT=cjs babel src --out-dir lib/js --ignore __tests__ --copy-files",
+ "build:es": "cross-env BABEL_ENV=production BABEL_OUTPUT=esm babel src --out-dir lib/es --ignore __tests__ --copy-files",
"build:storybook": "build-storybook --output-dir docs",
"create-github-release": "conventional-github-releaser -p angular",
"clear": "rimraf ./lib",