Skip to content

Commit 3224454

Browse files
chore(release): 1.29.0
## [1.29.0](v1.28.2...v1.29.0) (2024-07-03) ### Features * add update command ([#75](#75)) ([29784d0](29784d0))
1 parent 29784d0 commit 3224454

9 files changed

+43
-10
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [1.29.0](https://github.com/rpidanny/darwin/compare/v1.28.2...v1.29.0) (2024-07-03)
2+
3+
### Features
4+
5+
* add update command ([#75](https://github.com/rpidanny/darwin/issues/75)) ([29784d0](https://github.com/rpidanny/darwin/commit/29784d03b95b50df1b9721fb9522565836d3d94f))
6+
17
## [1.28.2](https://github.com/rpidanny/darwin/compare/v1.28.1...v1.28.2) (2024-07-03)
28

39
## [1.28.1](https://github.com/rpidanny/darwin/compare/v1.28.0...v1.28.1) (2024-07-03)

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $ npm install -g @rpidanny/darwin
3131
$ darwin COMMAND
3232
running command...
3333
$ darwin (--version)
34-
@rpidanny/darwin/1.28.2 linux-x64 node-v20.15.0
34+
@rpidanny/darwin/1.29.0 linux-x64 node-v20.15.0
3535
$ darwin --help [COMMAND]
3636
USAGE
3737
$ darwin COMMAND
@@ -48,6 +48,7 @@ USAGE
4848
* [`darwin config`](docs/config.md) - Manage application configurations.
4949
* [`darwin download`](docs/download.md) - Download papers, datasets, or other content.
5050
* [`darwin search`](docs/search.md) - Search for papers, accession numbers, or other content.
51+
* [`darwin update`](docs/update.md) - Update Darwin to the latest version.
5152

5253
<!-- commandsstop -->
5354

docs/chat.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ EXAMPLES
2727
$ darwin chat
2828
```
2929

30-
_See code: [src/commands/chat/index.ts](https://github.com/rpidanny/darwin/blob/v1.28.2/src/commands/chat/index.ts)_
30+
_See code: [src/commands/chat/index.ts](https://github.com/rpidanny/darwin/blob/v1.29.0/src/commands/chat/index.ts)_

docs/config.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ EXAMPLES
2424
$ darwin config get
2525
```
2626

27-
_See code: [src/commands/config/get.ts](https://github.com/rpidanny/darwin/blob/v1.28.2/src/commands/config/get.ts)_
27+
_See code: [src/commands/config/get.ts](https://github.com/rpidanny/darwin/blob/v1.29.0/src/commands/config/get.ts)_
2828

2929
## `darwin config set`
3030

@@ -41,4 +41,4 @@ EXAMPLES
4141
$ darwin config set
4242
```
4343

44-
_See code: [src/commands/config/set.ts](https://github.com/rpidanny/darwin/blob/v1.28.2/src/commands/config/set.ts)_
44+
_See code: [src/commands/config/set.ts](https://github.com/rpidanny/darwin/blob/v1.29.0/src/commands/config/set.ts)_

docs/download.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ EXAMPLES
3131
$ darwin download papers "crispr cas9" --output papers/ --count 100 --log-level debug
3232
```
3333

34-
_See code: [src/commands/download/papers.ts](https://github.com/rpidanny/darwin/blob/v1.28.2/src/commands/download/papers.ts)_
34+
_See code: [src/commands/download/papers.ts](https://github.com/rpidanny/darwin/blob/v1.29.0/src/commands/download/papers.ts)_

docs/search.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ FLAG DESCRIPTIONS
4848
Summaries are generated using LLM. Ensure LLMs are configured by running `darwin config set`.
4949
```
5050

51-
_See code: [src/commands/search/accession.ts](https://github.com/rpidanny/darwin/blob/v1.28.2/src/commands/search/accession.ts)_
51+
_See code: [src/commands/search/accession.ts](https://github.com/rpidanny/darwin/blob/v1.29.0/src/commands/search/accession.ts)_
5252

5353
## `darwin search papers KEYWORDS`
5454

@@ -93,4 +93,4 @@ FLAG DESCRIPTIONS
9393
Summaries are generated using LLM. Ensure LLMs are configured by running `darwin config set`.
9494
```
9595

96-
_See code: [src/commands/search/papers.ts](https://github.com/rpidanny/darwin/blob/v1.28.2/src/commands/search/papers.ts)_
96+
_See code: [src/commands/search/papers.ts](https://github.com/rpidanny/darwin/blob/v1.29.0/src/commands/search/papers.ts)_

docs/update.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
`darwin update`
2+
===============
3+
4+
Update Darwin to the latest version.
5+
6+
* [`darwin update`](#darwin-update)
7+
8+
## `darwin update`
9+
10+
Update Darwin to the latest version.
11+
12+
```
13+
USAGE
14+
$ darwin update [-l TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
15+
16+
GLOBAL FLAGS
17+
-l, --log-level=TRACE|DEBUG|INFO|WARN|ERROR|FATAL [default: INFO] Specify logging level.
18+
19+
DESCRIPTION
20+
Update Darwin to the latest version.
21+
22+
EXAMPLES
23+
$ darwin update
24+
```
25+
26+
_See code: [src/commands/update/index.ts](https://github.com/rpidanny/darwin/blob/v1.29.0/src/commands/update/index.ts)_

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@rpidanny/darwin",
33
"description": "An elegant CLI wizard enhancing biotech research efficiency, with adaptable features for other domains, albeit with minor constraints.",
4-
"version": "1.28.2",
4+
"version": "1.29.0",
55
"author": "Abhishek <[email protected]>",
66
"bin": {
77
"darwin": "./bin/run.js"

0 commit comments

Comments
 (0)