Skip to content

Commit

Permalink
Release v0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
konstin committed Sep 28, 2018
1 parent 1a29659 commit 3018e3b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["konstin <[email protected]>"]
name = "pyo3-pack"
version = "0.3.5"
version = "0.3.6"
description = "Build and publish crates with pyo3 bindings as python packages"
exclude = ["get-fourtytwo/**/*", "integration-test/**/*", "sysconfig/*"]
readme = "Readme.md"
Expand Down
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.6]

With deflate and the strip options, the wheels get about 25x smaller:

wheel | baseline | deflate | strip + deflate
Expand Down
12 changes: 6 additions & 6 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ FLAGS:
OPTIONS:
-m, --manifest-path <PATH> The path to the Cargo.toml [default: Cargo.toml]
--target <TRIPLE> The --target option for cargo
-b, --bindings-crate <bindings>
The crate providing the python bindings. pyo3, rust-cpython and cffi are supported
-b, --bindings <bindings>
Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin
--cargo-extra-args <cargo_extra_args>...
Extra arguments that will be passed to cargo as `cargo rustc [...] [arg1] [arg2] --`
Expand Down Expand Up @@ -123,8 +123,8 @@ FLAGS:
OPTIONS:
-m, --manifest-path <PATH> The path to the Cargo.toml [default: Cargo.toml]
--target <TRIPLE> The --target option for cargo
-b, --bindings-crate <bindings>
The crate providing the python bindings. pyo3, rust-cpython and cffi are supported
-b, --bindings <bindings>
Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin
--cargo-extra-args <cargo_extra_args>...
Extra arguments that will be passed to cargo as `cargo rustc [...] [arg1] [arg2] --`
Expand Down Expand Up @@ -160,8 +160,8 @@ FLAGS:
-V, --version Prints version information
OPTIONS:
-b, --bindings-crate <binding_crate>
The crate providing the python bindings. pyo3, rust-cpython and cffi are supported
-b, --bindings <binding_crate>
Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin
--cargo-extra-args <cargo_extra_args>...
Extra arguments that will be passed to cargo as `cargo rustc [...] [arg1] [arg2] --`
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ enum Opt {
#[structopt(name = "develop")]
/// Installs the crate as module in the current virtualenv so you can import it
///
/// Note that this command doesn't create entrypoints and compiles in debug mode by default
/// Note that this command doesn't create entrypoints
Develop {
/// Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin
#[structopt(short = "b", long = "bindings")]
Expand Down

0 comments on commit 3018e3b

Please sign in to comment.