Skip to content

Commit

Permalink
Merge pull request #1264 from messense/release-0.14.0
Browse files Browse the repository at this point in the history
Release v0.14.0
  • Loading branch information
messense authored Nov 19, 2022
2 parents 4e90762 + 464cbd1 commit f0cafd7
Show file tree
Hide file tree
Showing 6 changed files with 173 additions and 172 deletions.
57 changes: 28 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["konstin <konstin@mailbox.org>", "messense <messense@icloud.com>"]
name = "maturin"
version = "0.14.0-beta.7"
version = "0.14.0"
description = "Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages"
exclude = ["test-crates/**/*", "sysconfig/*", "test-data/*", "ci/*", "tests/*", "guide/*", ".github/*"]
homepage = "https://github.com/pyo3/maturin"
Expand Down Expand Up @@ -57,7 +57,7 @@ ignore = "0.4.18"
itertools = "0.10.5"
dialoguer = { version = "0.10.2", default-features = false }
console = "0.15.2"
minijinja = "0.25.0"
minijinja = "0.26.0"
lddtree = "0.3.2"
cc = "1.0.72"
clap = { version = "4.0.0", features = ["derive", "env", "wrap_help"] }
Expand Down
5 changes: 4 additions & 1 deletion 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.14.0] - 2022-11-19

* **Breaking Change**: Remove support for specifying python package metadata in `Cargo.toml` in [#1200](https://github.com/PyO3/maturin/pull/1200).
Python package metadata should be specified in the `project` section of `pyproject.toml` instead as [PEP 621](https://peps.python.org/pep-0621/) specifies.
* Initial support for shipping bin targets as wasm32-wasi binaries that are run through wasmtime in [#1107](https://github.com/PyO3/maturin/pull/1107).
Expand Down Expand Up @@ -742,7 +744,8 @@ points-0.1.0-py2.py3-none-manylinux1_x86_64.whl | 2,8M | 752K | 85K

* Initial Release

[Unreleased]: https://github.com/pyo3/maturin/compare/v0.13.7...HEAD
[Unreleased]: https://github.com/pyo3/maturin/compare/v0.14.0...HEAD
[0.14.0]: https://github.com/pyo3/maturin/compare/v0.13.7...v0.14.0
[0.13.7]: https://github.com/pyo3/maturin/compare/v0.13.6...v0.13.7
[0.13.6]: https://github.com/pyo3/maturin/compare/v0.13.5...v0.13.6
[0.13.5]: https://github.com/pyo3/maturin/compare/v0.13.4...v0.13.5
Expand Down
111 changes: 55 additions & 56 deletions guide/src/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,89 +6,88 @@ For local development, the `maturin develop` command can be used to quickly
build a package in debug mode by default and install it to virtualenv.

```
USAGE:
maturin develop [OPTIONS] [--] [ARGS]...
Usage: maturin develop [OPTIONS] [ARGS]...
ARGS:
<ARGS>...
Rustc flags
Arguments:
[ARGS]...
Rustc flags
OPTIONS:
-b, --bindings <BINDINGS>
Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin
Options:
-b, --bindings <BINDINGS>
Which kind of bindings to use. Possible values are pyo3, rust-cpython, cffi and bin
-r, --release
Pass --release to cargo
-r, --release
Pass --release to cargo
--strip
Strip the library for minimum file size
--strip
Strip the library for minimum file size
-E, --extras <EXTRAS>
Install extra requires aka. optional dependencies
-E, --extras <EXTRAS>
Install extra requires aka. optional dependencies
Use as `--extras=extra1,extra2`
Use as `--extras=extra1,extra2`
-q, --quiet
Do not print cargo log messages
-q, --quiet
Do not print cargo log messages
-j, --jobs <N>
Number of parallel jobs, defaults to # of CPUs
-j, --jobs <N>
Number of parallel jobs, defaults to # of CPUs
--profile <PROFILE-NAME>
Build artifacts with the specified Cargo profile
--profile <PROFILE-NAME>
Build artifacts with the specified Cargo profile
-F, --features <FEATURES>
Space or comma separated list of features to activate
-F, --features <FEATURES>
Space or comma separated list of features to activate
--all-features
Activate all available features
--all-features
Activate all available features
--no-default-features
Do not activate the `default` feature
--no-default-features
Do not activate the `default` feature
--target <TRIPLE>
Build for the target triple
--target <TRIPLE>
Build for the target triple
[env: CARGO_BUILD_TARGET=]
[env: CARGO_BUILD_TARGET=]
--target-dir <DIRECTORY>
Directory for all generated artifacts
--target-dir <DIRECTORY>
Directory for all generated artifacts
-m, --manifest-path <PATH>
Path to Cargo.toml
-m, --manifest-path <PATH>
Path to Cargo.toml
--ignore-rust-version
Ignore `rust-version` specification in packages
--ignore-rust-version
Ignore `rust-version` specification in packages
-v, --verbose
Use verbose output (-vv very verbose/build.rs output)
-v, --verbose...
Use verbose output (-vv very verbose/build.rs output)
--color <WHEN>
Coloring: auto, always, never
--color <WHEN>
Coloring: auto, always, never
--frozen
Require Cargo.lock and cache are up to date
--frozen
Require Cargo.lock and cache are up to date
--locked
Require Cargo.lock is up to date
--locked
Require Cargo.lock is up to date
--offline
Run without accessing the network
--offline
Run without accessing the network
--config <KEY=VALUE>
Override a configuration value (unstable)
--config <KEY=VALUE>
Override a configuration value (unstable)
-Z <FLAG>
Unstable (nightly-only) flags to Cargo, see 'cargo -Z help' for details
-Z <FLAG>
Unstable (nightly-only) flags to Cargo, see 'cargo -Z help' for details
--timings[=<FMTS>...]
Timing output formats (unstable) (comma separated): html, json
--timings=<FMTS>
Timing output formats (unstable) (comma separated): html, json
--future-incompat-report
Outputs a future incompatibility report at the end of the build (unstable)
--future-incompat-report
Outputs a future incompatibility report at the end of the build (unstable)
-h, --help
Print help information
-h, --help
Print help information (use `-h` for a summary)
```

## PEP 660 Editable Installs
Expand Down
Loading

0 comments on commit f0cafd7

Please sign in to comment.