diff --git a/CHANGELOG.md b/CHANGELOG.md index d5d84d5..75e220d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ 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.0.0](https://github.com/webpack-contrib/raw-loader/compare/v1.0.0...v2.0.0) (2019-03-18) + + +### Features + +* use ES Module export instead of CommonJS ([#69](https://github.com/webpack-contrib/raw-loader/issues/69)) ([3c7bf2c](https://github.com/webpack-contrib/raw-loader/commit/3c7bf2c)) + + +### BREAKING CHANGES + +* use ES Module export instead of CommonJS ([#69](https://github.com/webpack-contrib/raw-loader/issues/69)) ([3c7bf2c](https://github.com/webpack-contrib/raw-loader/commit/3c7bf2c)) + + + ## 1.0.0 (2018-12-10) @@ -18,4 +33,4 @@ All notable changes to this project will be documented in this file. See [standa ### BREAKING CHANGES * minimum require `webpack` version is `4` -* minimum require `nodejs` version is `6.9` \ No newline at end of file +* minimum require `nodejs` version is `6.9` diff --git a/package-lock.json b/package-lock.json index c0ecc24..f9d987f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "raw-loader", - "version": "1.0.0", + "version": "2.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 5dc7c85..e02a4e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "raw-loader", - "version": "1.0.0", + "version": "2.0.0", "description": "A loader for webpack that allows importing files as a String", "license": "MIT", "repository": "webpack-contrib/raw-loader",