You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .junie/plans/offline_mode_analysis_report.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Executive Summary
4
4
5
-
This report analyzes the Dockerized-NorLab Project (DNA) repository to identify implementation details that would prevent users from running `dna` in offline mode. After careful review and correction of initial misconceptions, the analysis shows that DNA can operate in offline mode with minimal or no modifications required.
5
+
This report analyzes the Dockerized-NorLab project application (DNA) repository to identify implementation details that would prevent users from running `dna` in offline mode. After careful review and correction of initial misconceptions, the analysis shows that DNA can operate in offline mode with minimal or no modifications required.
Copy file name to clipboardExpand all lines: documentation/command/version.md
+76-57Lines changed: 76 additions & 57 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# dna version
2
2
3
-
Show Dockerized-NorLab Project version information.
3
+
Show Dockerized-NorLab project application version information.
4
4
5
5
## Synopsis
6
6
@@ -10,58 +10,88 @@ dna version [OPTIONS]
10
10
11
11
## Description
12
12
13
-
The `dna version` command displays the current version of the Dockerized-NorLab Project (DNA) application. This is useful for troubleshooting, compatibility checking, and ensuring you're running the expected version.
13
+
The `dna version` command displays the current version of Dockerized-NorLab project application. This is useful for troubleshooting, compatibility checking, and ensuring you're running the expected version.
14
14
15
15
## Options
16
16
17
17
| Option | Description |
18
18
|--------|-------------|
19
+
|`--short`, `-s`| Show version number only |
20
+
|`--all`, `-a`| Show detailed version information |
19
21
|`--help`, `-h`| Show help message and exit |
20
22
21
-
## Examples
23
+
## Output Examples
22
24
23
-
### Basic Version Display
25
+
### Default Version Display
24
26
25
27
```bash
26
-
# Show DNA version
27
-
dna version
28
+
$ dna version
29
+
Dockerized-NorLab project application version 1.2.3
28
30
```
29
31
30
-
### Output Example
32
+
### Short Version Display
33
+
Show only version number
31
34
32
35
```bash
33
-
$ dna version
34
-
Dockerized-NorLab Project version: 1.2.3
36
+
$ dna version --short
37
+
1.2.3
38
+
```
39
+
40
+
### Detailed Version Display
41
+
Show comprehensive version information
42
+
43
+
```bash
44
+
dna version --all
45
+
$ dna version --all
46
+
Dockerized-NorLab project application:
47
+
Version: 1.2.3
48
+
Config scheme version: 1
49
+
Submodule version:
50
+
norlab-shell-script-tools: 2.0.0
51
+
norlab-build-system: 3.0.0
52
+
Local repository:
53
+
Current branch: main
54
+
Current commit: abc123def456
55
+
Host architecture and OS: linux/amd64
35
56
```
36
57
58
+
## Version Information
59
+
60
+
### Version Format
61
+
62
+
DNA follows semantic versioning (SemVer):
63
+
-**Format**: `MAJOR.MINOR.PATCH`
64
+
-**Example**: `1.2.3`
65
+
-`1` - Major version (breaking changes)
66
+
-`2` - Minor version (new features, backward compatible)
67
+
-`3` - Patch version (bug fixes, backward compatible)
0 commit comments