1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
//! Command-line arguments for the bump command.
//!
//! This module defines the [`BumpArgs`] struct which represents all possible
//! command-line arguments for the `cargo version-info bump` subcommand.
//!
//! # Version Selection
//!
//! The bump command supports multiple mutually-exclusive ways to determine
//! the target version:
//!
//! - **Manual**: `--version X.Y.Z` - Explicitly set the version
//! - **Auto**: `--auto` - Automatically suggest from GitHub releases
//! - **Major**: `--major` - Increment major version (X.0.0)
//! - **Minor**: `--minor` - Increment minor version (X.Y.0)
//! - **Patch**: `--patch` - Increment patch version (X.Y.Z)
//!
//! # Examples
//!
//! ```bash
//! # Bump patch version (most common)
//! cargo version-info bump --patch
//!
//! # Bump minor version (new features)
//! cargo version-info bump --minor
//!
//! # Bump major version (breaking changes)
//! cargo version-info bump --major
//!
//! # Set specific version
//! cargo version-info bump --version 2.0.0
//!
//! # Auto-suggest from GitHub releases
//! cargo version-info bump --auto --github-token $TOKEN
//! ```
use PathBuf;
use Parser;
/// Arguments for the `bump` command.
///
/// This struct uses `clap`'s derive macros to automatically parse command-line
/// arguments. The conflicts_with_all attributes ensure that only one version
/// selection method can be used at a time.