Skip to content

Commit d2278ca

Browse files
chore: bump version to 0.7.2 (#127)
1 parent 11b8850 commit d2278ca

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Simple nodejs cli which allows you to create and extract zip/tar files with supp
1010
Install it locally with
1111

1212
```bash
13-
npm i https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.7.1/node-zip-cli-0.7.1.tgz
13+
npm i https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.7.2/node-zip-cli-0.7.2.tgz
1414
```
1515

1616
Or install it globally with
1717

1818
```bash
19-
npm i --location=global https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.7.1/node-zip-cli-0.7.1.tgz
19+
npm i --location=global https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.7.2/node-zip-cli-0.7.2.tgz
2020
```
2121

2222
### Other version
@@ -204,7 +204,7 @@ Allows you to specify paths that you want to exclude. This option follows the sa
204204
> For example, providing `*.mjs` will result in the shell replacing it will all the file matching the wildcard, so as the input to the cli, instead of `"*.mjs"` will be provided the whole list (e.g. "rollup.config.mjs", "test.runner.mjs", ...). Instead, providing `"*.mjs"` will behave as expected, providing as input to the cli the pattern `"*.mjs"`
205205
206206
> [!NOTE]
207-
> Up to the current version (0.7.1) the list of paths to ignore which are specified with this options are applied after default ignore paths (like `.git`) BUT before any .gitignore or .zipignore file. This means that paths you specify here could be overridden by the aforementioned files.
207+
> Up to the current version (0.7.2) the list of paths to ignore which are specified with this options are applied after default ignore paths (like `.git`) BUT before any .gitignore or .zipignore file. This means that paths you specify here could be overridden by the aforementioned files.
208208
209209
###### `--allow-git`
210210

@@ -338,7 +338,7 @@ Allows you to specify paths that you want to exclude. This option follows the sa
338338
> For example, providing `*.mjs` will result in the shell replacing it will all the file matching the wildcard, so as the input to the cli, instead of `"*.mjs"` will be provided the whole list (e.g. "rollup.config.mjs", "test.runner.mjs", ...). Instead, providing `"*.mjs"` will behave as expected, providing as input to the cli the pattern `"*.mjs"`
339339
340340
> [!NOTE]
341-
> Up to the current version (0.7.1) the list of paths to ignore which are specified with this options are applied after default ignore paths (like `.git`) BUT before any .gitignore or .zipignore file. This means that paths you specify here could be overridden by the aforementioned files.
341+
> Up to the current version (0.7.2) the list of paths to ignore which are specified with this options are applied after default ignore paths (like `.git`) BUT before any .gitignore or .zipignore file. This means that paths you specify here could be overridden by the aforementioned files.
342342
343343
###### `--allow-git`
344344

@@ -393,7 +393,7 @@ Simply run this CLI providing to each command all the necessary options.
393393
This file is meant to be placed in a folder which you plan to zip/tar. It is meant to be used instead of the .gitignore, if the content of the folder is not related to git, or as an extension of the .gitignore, where you can specify additional rules related only to the zip file creation. The .zipignore file follow the same syntax and rules of the traditional .gitignore
394394

395395
> [!NOTE]
396-
> Up to the current version (0.7.1) the .zipignore builds on top of already existing .gitignore rules, so if you only want to ignore some additional files you **do not need** to copy paste the content of the .gitignore.
396+
> Up to the current version (0.7.2) the .zipignore builds on top of already existing .gitignore rules, so if you only want to ignore some additional files you **do not need** to copy paste the content of the .gitignore.
397397
398398
> [!NOTE]
399399
> Since version (0.7.0) the strategy of ignoring everythin (`*`) and then un-ignoring (!) some paths (e.g. `!test`, `!src`, ...) is supported and behaves like in the gitignore specs. Quoting from [gitignore specs](https://git-scm.com/docs/gitignore): *"It is not possible to re-include a file if a parent directory of that file is excluded. Git doesn’t list excluded directories for performance reasons, so any patterns on contained files have no effect, no matter where they are defined. "*.
@@ -402,6 +402,6 @@ This file is meant to be placed in a folder which you plan to zip/tar. It is mea
402402
403403
> [!WARNING]
404404
> *Current limitations*
405-
> Up to the current version (0.7.1) zip/tar and unzip/untar should handle files, directories and symlinks. Though, symlink support is still experimental, so it may not behave as expected. Currently on Windows symlinks are not supported
405+
> Up to the current version (0.7.2) zip/tar and unzip/untar should handle files, directories and symlinks. Though, symlink support is still experimental, so it may not behave as expected. Currently on Windows symlinks are not supported
406406
>
407-
> Up to the current version (0.7.1) only 32-bit zip are supported, 64-bit zip support is not yet implemented.
407+
> Up to the current version (0.7.2) only 32-bit zip are supported, 64-bit zip support is not yet implemented.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-zip-cli",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "Simple nodejs cli which allows you to create and extract zip/tar files with support for .gitignore files",
55
"main": "dist/index.mjs",
66
"bin": "dist/index.mjs",

0 commit comments

Comments
 (0)