Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 47743ca

Browse files
committedAug 28, 2024··
Release v0.8.0
1 parent 889de8d commit 47743ca

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed
 

‎CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.8.0] - 2024-08-28
11+
12+
### Added
13+
14+
- Add support for passing headers or a `{module, :function_name}` to `:base_url`.
15+
The headers can be passed in the format `{"URL", [{"header_key", "header_value"}]}`.
16+
This feature is useful for people that need to perform authentication before downloading
17+
the artifacts.
18+
19+
- Add `available_nifs/1` to replace `available_nif_urls/1` that was deprecated.
20+
The new function will return a list of tuples in the format: `{"lib_name", {"base_url", [headers]}}`.
21+
22+
- Add `current_target_nifs/1` to replace `current_target_nif_urls/1` that was deprecated.
23+
The new function will return a list of tuples in the format: `{"lib_name", {"base_url", [headers]}}`.
24+
25+
### Deprecated
26+
27+
- `available_nif_urls/1`
28+
- `current_target_nif_urls/1`
29+
30+
### Removed
31+
32+
- Remove support for Elixir 1.12.
33+
1034
## [0.7.3] - 2024-08-28
1135

1236
### Fixed
@@ -232,7 +256,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
232256

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

235-
[Unreleased]: https://github.com/philss/rustler_precompiled/compare/v0.7.3...HEAD
259+
[Unreleased]: https://github.com/philss/rustler_precompiled/compare/v0.8.0...HEAD
260+
[0.8.0]: https://github.com/philss/rustler_precompiled/compare/v0.7.3...v0.8.0
236261
[0.7.3]: https://github.com/philss/rustler_precompiled/compare/v0.7.2...v0.7.3
237262
[0.7.2]: https://github.com/philss/rustler_precompiled/compare/v0.7.1...v0.7.2
238263
[0.7.1]: https://github.com/philss/rustler_precompiled/compare/v0.7.0...v0.7.1

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ list of dependencies in `mix.exs`:
2222
```elixir
2323
def deps do
2424
[
25-
{:rustler_precompiled, "~> 0.7"}
25+
{:rustler_precompiled, "~> 0.8"}
2626
]
2727
end
2828
```

‎mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule RustlerPrecompiled.MixProject do
22
use Mix.Project
33

4-
@version "0.7.3"
4+
@version "0.8.0"
55
@repo "https://github.com/philss/rustler_precompiled"
66

77
def project do

0 commit comments

Comments
 (0)
Please sign in to comment.