Skip to content

Commit

Permalink
chore: release 0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kranzes committed Jun 30, 2024
1 parent 190481f commit 1dee214
Show file tree
Hide file tree
Showing 9 changed files with 994 additions and 296 deletions.
305 changes: 186 additions & 119 deletions crate2nix/Cargo.lock

Large diffs are not rendered by default.

706 changes: 541 additions & 165 deletions crate2nix/Cargo.nix

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crate2nix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crate2nix"
version = "0.14.0"
version = "0.14.1"
authors = ["Peter Kolloch <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
14 changes: 14 additions & 0 deletions docs/src/content/docs/90_reference/90_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ description: A list of all major changes per version.

TODO

## 0.14.x - 0.14.1 (2024-06-30)

Maintenance release with cross-compilation fixes, documentation improvements and removal of old workarounds.

* [#352](https://github.com/nix-community/crate2nix/pull/352):
* `rust.lib` -> `stdenv.hostPlatform.rust`
* Always filter `src` using `filterSource`
* Get rid of `dontStrip` for Darwin as it's no longer needed
* Remove no longer needed `unsafeDiscardStringContext` workaround

* [#351](https://github.com/nix-community/crate2nix/pull/351): Set `--extra-experimental-features flakes` in `regenerate_cargo_nix.sh`.

* [#350](https://github.com/nix-community/crate2nix/pull/350): Document `targetFeatures` better.

## 0.13.x - 0.14.0 (2024-04-11)

[340](https://github.com/nix-community/crate2nix/issues/340) make `crate2nix` compatible
Expand Down
255 changes: 248 additions & 7 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
};

crate2nix_stable = {
url = "github:nix-community/crate2nix/0.12.0";
url = "github:nix-community/crate2nix/0.14.0";
};

nix-test-runner = {
Expand Down
2 changes: 1 addition & 1 deletion sample_projects/bin_with_git_submodule_dep/Cargo.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# This file was @generated by crate2nix 0.14.0 with the command:
# This file was @generated by crate2nix 0.14.1 with the command:
# "generate" "-f" "sample_projects/bin_with_git_submodule_dep/Cargo.toml" "-o" "sample_projects/bin_with_git_submodule_dep/Cargo.nix"
# See https://github.com/kolloch/crate2nix for more info.

Expand Down
2 changes: 1 addition & 1 deletion sample_projects/codegen/Cargo.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# This file was @generated by crate2nix 0.14.0 with the command:
# This file was @generated by crate2nix 0.14.1 with the command:
# "generate" "-f" "sample_projects/codegen/Cargo.toml" "-o" "sample_projects/codegen/Cargo.nix"
# See https://github.com/kolloch/crate2nix for more info.

Expand Down
2 changes: 1 addition & 1 deletion sample_projects/sub_dir_crates/Cargo.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# This file was @generated by crate2nix 0.14.0 with the command:
# This file was @generated by crate2nix 0.14.1 with the command:
# "generate" "-f" "sample_projects/sub_dir_crates/Cargo.toml" "-o" "sample_projects/sub_dir_crates/Cargo.nix"
# See https://github.com/kolloch/crate2nix for more info.

Expand Down

0 comments on commit 1dee214

Please sign in to comment.