From 95ee79d97539576205068c73a730966cb15ea533 Mon Sep 17 00:00:00 2001 From: Brian Neisler Date: Tue, 18 May 2021 06:02:05 -0700 Subject: [PATCH] Release v0.3.1 --- CHANGELOG.md | 4 ++++ RELEASE.md | 2 -- docs/API.md | 6 +++--- package-lock.json | 2 +- package.json | 2 +- 5 files changed, 9 insertions(+), 7 deletions(-) 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

diff --git a/package-lock.json b/package-lock.json index 0a8deb7..1264677 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "firemin", - "version": "0.3.0", + "version": "0.3.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index a68cb92..f037a28 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "firemin", - "version": "0.3.0", + "version": "0.3.1", "description": "Firebase Firestore/Storage security rules minifier", "author": "Brian Neisler ", "license": "Apache-2.0",