Skip to content

Commit 3018e3b

Browse files
committed
Release v0.3.6
1 parent 1a29659 commit 3018e3b

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["konstin <[email protected]>"]
33
name = "pyo3-pack"
4-
version = "0.3.5"
4+
version = "0.3.6"
55
description = "Build and publish crates with pyo3 bindings as python packages"
66
exclude = ["get-fourtytwo/**/*", "integration-test/**/*", "sysconfig/*"]
77
readme = "Readme.md"

Changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.6]
11+
1012
With deflate and the strip options, the wheels get about 25x smaller:
1113

1214
wheel | baseline | deflate | strip + deflate

Readme.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ FLAGS:
9191
OPTIONS:
9292
-m, --manifest-path <PATH> The path to the Cargo.toml [default: Cargo.toml]
9393
--target <TRIPLE> The --target option for cargo
94-
-b, --bindings-crate <bindings>
95-
The crate providing the python bindings. pyo3, rust-cpython and cffi are supported
94+
-b, --bindings <bindings>
95+
Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin
9696
9797
--cargo-extra-args <cargo_extra_args>...
9898
Extra arguments that will be passed to cargo as `cargo rustc [...] [arg1] [arg2] --`
@@ -123,8 +123,8 @@ FLAGS:
123123
OPTIONS:
124124
-m, --manifest-path <PATH> The path to the Cargo.toml [default: Cargo.toml]
125125
--target <TRIPLE> The --target option for cargo
126-
-b, --bindings-crate <bindings>
127-
The crate providing the python bindings. pyo3, rust-cpython and cffi are supported
126+
-b, --bindings <bindings>
127+
Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin
128128
129129
--cargo-extra-args <cargo_extra_args>...
130130
Extra arguments that will be passed to cargo as `cargo rustc [...] [arg1] [arg2] --`
@@ -160,8 +160,8 @@ FLAGS:
160160
-V, --version Prints version information
161161
162162
OPTIONS:
163-
-b, --bindings-crate <binding_crate>
164-
The crate providing the python bindings. pyo3, rust-cpython and cffi are supported
163+
-b, --bindings <binding_crate>
164+
Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin
165165
166166
--cargo-extra-args <cargo_extra_args>...
167167
Extra arguments that will be passed to cargo as `cargo rustc [...] [arg1] [arg2] --`

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ enum Opt {
140140
#[structopt(name = "develop")]
141141
/// Installs the crate as module in the current virtualenv so you can import it
142142
///
143-
/// Note that this command doesn't create entrypoints and compiles in debug mode by default
143+
/// Note that this command doesn't create entrypoints
144144
Develop {
145145
/// Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin
146146
#[structopt(short = "b", long = "bindings")]

0 commit comments

Comments
 (0)