diff --git a/CHANGELOG.md b/CHANGELOG.md index 3989f2e..8002b60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,3 +21,7 @@ - Add collapsing of small functions to help eliminate operation overhead and slight reduction in code size. - Update docs - Re-add setupContext method for programmatic usage. Upgrade firetree. Add export folders to allow for importing of subfolders. Add stdout support as a method of returning minified code. + +## Release v0.3.1 + +- Upgrade all dependencies to latest versions. Update npm token in travis file diff --git a/RELEASE.md b/RELEASE.md index e82b398..e15b536 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -68,8 +68,6 @@ git push origin release/vX.X.X git log --pretty="- %s" --no-merges origin/release/vX.X.X..release/vX.X.X >> CHANGELOG.md ``` -git log --pretty="- %s" --no-merges origin/release/v0.2.2..release/v0.3.0 >> CHANGELOG.md - - Commit the changelog. Replace Xs with new version number. ```sh diff --git a/docs/API.md b/docs/API.md index b93b3c0..a8bc117 100644 --- a/docs/API.md +++ b/docs/API.md @@ -15,7 +15,7 @@ ### function minimize() -[source](https://github.com/brianneisler/firemin.git/tree/v0.3.0/src/minimizer/minimize.js#L8) since v0.1.0 +[source](https://github.com/brianneisler/firemin.git/tree/v0.3.1/src/minimizer/minimize.js#L8) since v0.1.0
Minimizes the rules contained at the given filePath.
If given an output this method will output the result to the given
@@ -55,7 +55,7 @@ await minimize(context, {
### **private** function cacheChain()
-[source](https://github.com/brianneisler/firemin.git/tree/v0.3.0/src/utils/cacheChain.js#L42) since v0.1.0
+[source](https://github.com/brianneisler/firemin.git/tree/v0.3.1/src/utils/cacheChain.js#L42) since v0.1.0
This method generates a specific object instance for use in a WeakMap cache.
The object instance is unique based upon the parameters that are passed to
@@ -83,7 +83,7 @@ cache chains connected to the object will automatically be removed from the cach
### **private** function functionDefineLength()
-[source](https://github.com/brianneisler/firemin.git/tree/v0.3.0/src/utils/functionDefineLength.js#L55) since v0.1.0
+[source](https://github.com/brianneisler/firemin.git/tree/v0.3.1/src/utils/functionDefineLength.js#L55) since v0.1.0
Defines length
for the given func
Note: This mutates func