Skip to content

Commit 51b2971

Browse files
chore: bump version to 0.11.0
1 parent ffaf5d1 commit 51b2971

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ Simple Node.js CLI which allows you to create and extract zip/tar files with sup
1111
Install it locally with
1212

1313
```bash
14-
npm i https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.10.1/node-zip-cli-0.10.1.tgz
14+
npm i https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.11.0/node-zip-cli-0.11.0.tgz
1515
```
1616

1717
Or install it globally with
1818

1919
```bash
20-
npm i --location=global https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.10.1/node-zip-cli-0.10.1.tgz
20+
npm i --location=global https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.11.0/node-zip-cli-0.11.0.tgz
2121
```
2222

2323
### Other versions
@@ -210,7 +210,7 @@ Allows you to specify paths that you want to exclude. This option follows the sa
210210
> 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"`
211211
212212
> [!NOTE]
213-
> Up to the current version (0.10.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.
213+
> Up to the current version (0.11.0) 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.
214214
215215
###### `--allow-git`
216216

@@ -348,7 +348,7 @@ Allows you to specify paths that you want to exclude. This option follows the sa
348348
> 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"`
349349
350350
> [!NOTE]
351-
> Up to the current version (0.10.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.
351+
> Up to the current version (0.11.0) 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.
352352
353353
###### `--allow-git`
354354

@@ -449,7 +449,7 @@ Filter the types of entries this command will list
449449
By default, the three types are included, but you can decide to only list a subset.
450450

451451
> [!NOTE]
452-
> Up to the current version (0.10.1) symlinks are not listed by default. To list them you need to specify the `-s keep` option.
452+
> Up to the current version (0.11.0) symlinks are not listed by default. To list them you need to specify the `-s keep` option.
453453
>
454454
> Since version (0.10.0) to list them you can just specify the `-s` option
455455
@@ -489,7 +489,7 @@ Allows you to specify paths that you want to exclude. This option follows the sa
489489
> 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"`
490490
491491
> [!NOTE]
492-
> Up to the current version (0.10.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.
492+
> Up to the current version (0.11.0) 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.
493493
494494
###### `--allow-git`
495495

@@ -510,7 +510,7 @@ Simply run this CLI providing to each command all the necessary options.
510510
This file is meant to be placed in a folder that 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 follows the same syntax and rules as the traditional .gitignore
511511

512512
> [!NOTE]
513-
> Up to the current version (0.10.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.
513+
> Up to the current version (0.11.0) 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.
514514
515515
> [!NOTE]
516516
> 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. "*.
@@ -524,6 +524,6 @@ This file is meant to be placed in a folder that you plan to zip/tar. It is mean
524524
525525
> [!WARNING]
526526
> *Current limitations*
527-
> Up to the current version (0.10.1) zip/tar and unzip/untar handle files, directories and symlinks.
527+
> Up to the current version (0.11.0) zip/tar and unzip/untar handle files, directories and symlinks.
528528
>
529529
> Since version (0.10.0) symlink support is marked as stable, but requires the user to explicitly enable it for `zip`,`tar` and `find` through the `-s, --symlink` option.

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.10.1",
3+
"version": "0.11.0",
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)