Skip to content

Commit 04af80d

Browse files
authored
chore: Bump version to 0.18.0 (#382)
1 parent ec3aee3 commit 04af80d

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

README.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ USAGE
299299
$ apify actor
300300
```
301301

302-
_See code: [src/commands/actor/index.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/actor/index.js)_
302+
_See code: [src/commands/actor/index.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/actor/index.js)_
303303

304304
## `apify actor:get-input`
305305

@@ -310,7 +310,7 @@ USAGE
310310
$ apify actor:get-input
311311
```
312312

313-
_See code: [src/commands/actor/get-input.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/actor/get-input.js)_
313+
_See code: [src/commands/actor/get-input.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/actor/get-input.js)_
314314

315315
## `apify actor:get-value KEY`
316316

@@ -324,7 +324,7 @@ ARGUMENTS
324324
KEY Key of the record in key-value store
325325
```
326326

327-
_See code: [src/commands/actor/get-value.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/actor/get-value.js)_
327+
_See code: [src/commands/actor/get-value.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/actor/get-value.js)_
328328

329329
## `apify actor:push-data [ITEM]`
330330

@@ -345,7 +345,7 @@ DESCRIPTION
345345
$ cat ./test.json | apify actor:push-data
346346
```
347347

348-
_See code: [src/commands/actor/push-data.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/actor/push-data.js)_
348+
_See code: [src/commands/actor/push-data.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/actor/push-data.js)_
349349

350350
## `apify actor:set-value KEY [VALUE]`
351351

@@ -375,7 +375,7 @@ DESCRIPTION
375375
$ cat ./my-text-file.txt | apify actor:set-value KEY --contentType text/plain
376376
```
377377

378-
_See code: [src/commands/actor/set-value.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/actor/set-value.js)_
378+
_See code: [src/commands/actor/set-value.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/actor/set-value.js)_
379379

380380
## `apify call [ACTID]`
381381

@@ -400,7 +400,7 @@ DESCRIPTION
400400
takes input for the Actor from the default local key-value store by default.
401401
```
402402

403-
_See code: [src/commands/call.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/call.js)_
403+
_See code: [src/commands/call.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/call.js)_
404404

405405
## `apify create [ACTORNAME]`
406406

@@ -422,7 +422,7 @@ OPTIONS
422422
--skip-dependency-install Skip installing actor dependencies.
423423
```
424424

425-
_See code: [src/commands/create.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/create.js)_
425+
_See code: [src/commands/create.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/create.js)_
426426

427427
## `apify info`
428428

@@ -436,7 +436,7 @@ DESCRIPTION
436436
The information is printed to the console.
437437
```
438438

439-
_See code: [src/commands/info.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/info.js)_
439+
_See code: [src/commands/info.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/info.js)_
440440

441441
## `apify init [ACTORNAME]`
442442

@@ -456,7 +456,7 @@ DESCRIPTION
456456
WARNING: The directory at "storage" will be overwritten if it already exists.
457457
```
458458

459-
_See code: [src/commands/init.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/init.js)_
459+
_See code: [src/commands/init.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/init.js)_
460460

461461
## `apify login`
462462

@@ -474,7 +474,7 @@ DESCRIPTION
474474
"apify" commands. To log out, call "apify logout".
475475
```
476476

477-
_See code: [src/commands/login.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/login.js)_
477+
_See code: [src/commands/login.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/login.js)_
478478

479479
## `apify logout`
480480

@@ -489,7 +489,7 @@ DESCRIPTION
489489
call "apify login".
490490
```
491491

492-
_See code: [src/commands/logout.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/logout.js)_
492+
_See code: [src/commands/logout.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/logout.js)_
493493

494494
## `apify pull [ACTORID]`
495495

@@ -507,7 +507,7 @@ OPTIONS
507507
-v, --version=version Actor version number which will be pulled, e.g. 1.2. Default: the highest version
508508
```
509509

510-
_See code: [src/commands/pull.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/pull.js)_
510+
_See code: [src/commands/pull.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/pull.js)_
511511

512512
## `apify push [ACTORID]`
513513

@@ -545,7 +545,7 @@ DESCRIPTION
545545
WARNING: If the target Actor already exists in your Apify account, it will be overwritten!
546546
```
547547

548-
_See code: [src/commands/push.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/push.js)_
548+
_See code: [src/commands/push.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/push.js)_
549549

550550
## `apify run`
551551

@@ -575,7 +575,7 @@ DESCRIPTION
575575
package.json file. You can set up your own main file or environment variables by changing it.
576576
```
577577

578-
_See code: [src/commands/run.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/run.js)_
578+
_See code: [src/commands/run.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/run.js)_
579579

580580
## `apify secrets`
581581

@@ -603,7 +603,7 @@ DESCRIPTION
603603
of the actor.
604604
```
605605

606-
_See code: [src/commands/secrets/index.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/secrets/index.js)_
606+
_See code: [src/commands/secrets/index.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/secrets/index.js)_
607607

608608
## `apify secrets:add NAME VALUE`
609609

@@ -621,7 +621,7 @@ DESCRIPTION
621621
The secrets are stored to a file at ~/.apify
622622
```
623623

624-
_See code: [src/commands/secrets/add.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/secrets/add.js)_
624+
_See code: [src/commands/secrets/add.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/secrets/add.js)_
625625

626626
## `apify secrets:rm NAME`
627627

@@ -635,7 +635,7 @@ ARGUMENTS
635635
NAME Name of the secret
636636
```
637637

638-
_See code: [src/commands/secrets/rm.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/secrets/rm.js)_
638+
_See code: [src/commands/secrets/rm.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/secrets/rm.js)_
639639

640640
## `apify vis [PATH]`
641641

@@ -659,5 +659,5 @@ DESCRIPTION
659659
You can also pass any custom path to your input schema to have it validated instead.
660660
```
661661

662-
_See code: [src/commands/vis.js](https://github.com/apify/apify-cli/blob/v0.17.0/src/commands/vis.js)_
662+
_See code: [src/commands/vis.js](https://github.com/apify/apify-cli/blob/v0.18.0/src/commands/vis.js)_
663663
<!-- commandsstop -->

npm-shrinkwrap.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)