File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
* Stop testing Python 3.6 on CI since it's already EOL in [ #840 ] ( https://github.com/PyO3/maturin/pull/840 )
12
12
* Update workspace members for sdist local dependencies in [ #844 ] ( https://github.com/PyO3/maturin/pull/844 )
13
13
* Migrate docker image to github container registry in [ #845 ] ( https://github.com/PyO3/maturin/pull/845 )
14
+ * Add ` -r ` option as a short alias for ` --release ` in [ #854 ] ( https://github.com/PyO3/maturin/pull/854 )
14
15
15
16
## [ 0.12.10] - 2022-03-09
16
17
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ enum Opt {
30
30
#[ clap( flatten) ]
31
31
build : BuildOptions ,
32
32
/// Pass --release to cargo
33
- #[ clap( long) ]
33
+ #[ clap( short = 'r' , long) ]
34
34
release : bool ,
35
35
/// Strip the library for minimum file size
36
36
#[ clap( long) ]
@@ -77,7 +77,7 @@ enum Opt {
77
77
/// The path to the Cargo.toml
78
78
manifest_path : PathBuf ,
79
79
/// Pass --release to cargo
80
- #[ clap( long) ]
80
+ #[ clap( short = 'r' , long) ]
81
81
release : bool ,
82
82
/// Strip the library for minimum file size
83
83
#[ clap( long) ]
You can’t perform that action at this time.
0 commit comments