Skip to content

Commit c70a1e6

Browse files
authored
chore: release 2.0.6 (#563)
1 parent 3453be3 commit c70a1e6

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ npm install -g @herodevs/cli
5555
HeroDevs CLI is available as a binary installation, without requiring `npm`. To do that, you may either download and run the script manually, or use the following cURL or Wget command:
5656

5757
```sh
58-
curl -o- https://raw.githubusercontent.com/herodevs/cli/v2.0.5/scripts/install.sh | bash
58+
curl -o- https://raw.githubusercontent.com/herodevs/cli/v2.0.6/scripts/install.sh | bash
5959
```
6060

6161
```sh
62-
wget -qO- https://raw.githubusercontent.com/herodevs/cli/v2.0.5/scripts/install.sh | bash
62+
wget -qO- https://raw.githubusercontent.com/herodevs/cli/v2.0.6/scripts/install.sh | bash
6363
```
6464

6565
## Scanning Behavior
@@ -84,7 +84,7 @@ $ npm install -g @herodevs/cli
8484
$ hd COMMAND
8585
running command...
8686
$ hd (--version|-v)
87-
@herodevs/cli/2.0.5 darwin-arm64 node-v24.14.1
87+
@herodevs/cli/2.0.6 darwin-arm64 node-v24.14.1
8888
$ hd --help [COMMAND]
8989
USAGE
9090
$ hd COMMAND
@@ -115,7 +115,7 @@ DESCRIPTION
115115
OAuth CLI login
116116
```
117117

118-
_See code: [src/commands/auth/login.ts](https://github.com/herodevs/cli/blob/v2.0.5/src/commands/auth/login.ts)_
118+
_See code: [src/commands/auth/login.ts](https://github.com/herodevs/cli/blob/v2.0.6/src/commands/auth/login.ts)_
119119

120120
### `hd auth logout`
121121

@@ -129,7 +129,7 @@ DESCRIPTION
129129
Logs out of HeroDevs OAuth and clears stored tokens
130130
```
131131

132-
_See code: [src/commands/auth/logout.ts](https://github.com/herodevs/cli/blob/v2.0.5/src/commands/auth/logout.ts)_
132+
_See code: [src/commands/auth/logout.ts](https://github.com/herodevs/cli/blob/v2.0.6/src/commands/auth/logout.ts)_
133133

134134
### `hd auth provision-ci-token`
135135

@@ -143,7 +143,7 @@ DESCRIPTION
143143
Provision a CI/CD long-lived refresh token for headless auth
144144
```
145145

146-
_See code: [src/commands/auth/provision-ci-token.ts](https://github.com/herodevs/cli/blob/v2.0.5/src/commands/auth/provision-ci-token.ts)_
146+
_See code: [src/commands/auth/provision-ci-token.ts](https://github.com/herodevs/cli/blob/v2.0.6/src/commands/auth/provision-ci-token.ts)_
147147

148148
### `hd help [COMMAND]`
149149

@@ -177,10 +177,10 @@ USAGE
177177
FLAGS
178178
-c, --csv Output in CSV format
179179
-d, --directory=<value> Directory to search
180-
-e, --afterDate=<value> [default: 2025-04-20] Start date (format: yyyy-MM-dd)
180+
-e, --afterDate=<value> [default: 2025-04-23] Start date (format: yyyy-MM-dd)
181181
-m, --months=<value> [default: 12] The number of months of git history to review. Cannot be used along beforeDate
182182
and afterDate
183-
-s, --beforeDate=<value> [default: 2026-04-20] End date (format: yyyy-MM-dd)
183+
-s, --beforeDate=<value> [default: 2026-04-23] End date (format: yyyy-MM-dd)
184184
-s, --save Save the committers report as herodevs.committers.<output>
185185
-x, --exclude=<value>... Path Exclusions (eg -x="./src/bin" -x="./dist")
186186
--json Output to JSON format
@@ -199,7 +199,7 @@ EXAMPLES
199199
$ hd report committers --csv
200200
```
201201

202-
_See code: [src/commands/report/committers.ts](https://github.com/herodevs/cli/blob/v2.0.5/src/commands/report/committers.ts)_
202+
_See code: [src/commands/report/committers.ts](https://github.com/herodevs/cli/blob/v2.0.6/src/commands/report/committers.ts)_
203203

204204
### `hd scan eol`
205205

@@ -250,7 +250,7 @@ EXAMPLES
250250
$ hd scan eol --json
251251
```
252252

253-
_See code: [src/commands/scan/eol.ts](https://github.com/herodevs/cli/blob/v2.0.5/src/commands/scan/eol.ts)_
253+
_See code: [src/commands/scan/eol.ts](https://github.com/herodevs/cli/blob/v2.0.6/src/commands/scan/eol.ts)_
254254

255255
### `hd tracker init`
256256

@@ -284,7 +284,7 @@ EXAMPLES
284284
$ hd tracker init -o
285285
```
286286

287-
_See code: [src/commands/tracker/init.ts](https://github.com/herodevs/cli/blob/v2.0.5/src/commands/tracker/init.ts)_
287+
_See code: [src/commands/tracker/init.ts](https://github.com/herodevs/cli/blob/v2.0.6/src/commands/tracker/init.ts)_
288288

289289
### `hd tracker run`
290290

@@ -309,7 +309,7 @@ EXAMPLES
309309
$ hd tracker run -d tracker -f settings.json
310310
```
311311

312-
_See code: [src/commands/tracker/run.ts](https://github.com/herodevs/cli/blob/v2.0.5/src/commands/tracker/run.ts)_
312+
_See code: [src/commands/tracker/run.ts](https://github.com/herodevs/cli/blob/v2.0.6/src/commands/tracker/run.ts)_
313313

314314
### `hd update [CHANNEL]`
315315

@@ -336,7 +336,7 @@ EXAMPLES
336336
337337
Update to a specific version:
338338
339-
$ hd update --version 2.0.5
339+
$ hd update --version 2.0.6
340340
341341
Interactively select version:
342342

ci/image.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ENV NODE_NO_WARNINGS=1 \
33
NPM_CONFIG_UPDATE_NOTIFIER=false \
44
NPM_CONFIG_LOGLEVEL=error
55
WORKDIR /app
6-
ARG VERSION=2.0.5
6+
ARG VERSION=2.0.6
77
USER root
88
RUN npm install -g @herodevs/cli@${VERSION}
99
COPY --chmod=755 ci/docker-entrypoint.sh /usr/local/bin/hd-entrypoint

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": "@herodevs/cli",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"author": "HeroDevs, Inc",
55
"bin": {
66
"hd": "./bin/run.js"

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ INSTALL_DIR="$HOME/.herodevs"
3232
BIN_DIR="$INSTALL_DIR/bin"
3333
GITHUB_API_URL="https://api.github.com/repos/${REPO_OWNER}/${REPO_NAME}/releases"
3434
TMP_DIR=""
35-
LATEST_VERSION="v2.0.5"
35+
LATEST_VERSION="v2.0.6"
3636
DEBUG=${DEBUG:-}
3737

3838
# Colors for output

0 commit comments

Comments
 (0)