rollup 0.66.5 → 0.66.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # rollup changelog
2
2
 
3
+ ## 0.66.6
4
+ *2018-10-10*
5
+ * Properly deconflict function and class declaration ids of reassigned default exports ([#2502](https://github.com/rollup/rollup/pull/2502))
6
+
3
7
  ## 0.66.5
4
8
  *2018-10-09*
5
9
  * Remove cache from memory once no longer needed ([#2496](https://github.com/rollup/rollup/pull/2496))
package/bin/rollup CHANGED
@@ -251,7 +251,7 @@ function isNumber (x) {
251
251
  return /^[-+]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(x);
252
252
  }
253
253
 
254
- var version = "0.66.5";
254
+ var version = "0.66.6";
255
255
 
256
256
  /*! *****************************************************************************
257
257
  Copyright (c) Microsoft Corporation. All rights reserved.