Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.3] - 2025-07-23

### Added

- Update the list of supported targets from running `rustc --print target-list`
with Rust v1.88.0. We kept the legacy targets that would be removed, so we
don't have a breaking change. We should remove those in v0.9.

### Fixed

- Fix error handling when trying to create directories for the metadata.
It makes working with Nix a little bit easier.

## [0.8.2] - 2024-09-27

### Added
Expand Down Expand Up @@ -277,7 +290,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Add basic features to download and use the precompiled NIFs in a safe way.

[Unreleased]: https://github.com/philss/rustler_precompiled/compare/v0.8.2...HEAD
[Unreleased]: https://github.com/philss/rustler_precompiled/compare/v0.8.3...HEAD
[0.8.3]: https://github.com/philss/rustler_precompiled/compare/v0.8.2...v0.8.3
[0.8.2]: https://github.com/philss/rustler_precompiled/compare/v0.8.1...v0.8.2
[0.8.1]: https://github.com/philss/rustler_precompiled/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/philss/rustler_precompiled/compare/v0.7.3...v0.8.0
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule RustlerPrecompiled.MixProject do
use Mix.Project

@version "0.8.2"
@version "0.8.3"
@repo "https://github.com/philss/rustler_precompiled"

def project do
Expand Down
Loading