Skip to content

Commit

Permalink
Release v0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
philss committed Sep 27, 2024
1 parent d0b77a6 commit 7fa483d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.2] - 2024-09-27

### Added

- Add support for overriding the CA file path by setting the `HEX_CACERTS_PATH`
env var, which is the same that Mix uses. If unset, it will fallback to
`CAStore.file_path/0`.

## [0.8.1] - 2024-09-11

### Fixed
Expand Down Expand Up @@ -269,7 +277,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.1...HEAD
[Unreleased]: https://github.com/philss/rustler_precompiled/compare/v0.8.2...HEAD
[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
[0.7.3]: https://github.com/philss/rustler_precompiled/compare/v0.7.2...v0.7.3
Expand Down
3 changes: 3 additions & 0 deletions lib/rustler_precompiled.ex
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ defmodule RustlerPrecompiled do
* `HTTPS_PROXY` or `https_proxy` - Sets the HTTPS proxy configuration.
* `HEX_CACERTS_PATH` - Sets the path for a custom CA certificates file.
If unset, defaults to `CAStore.file_path/0`.
* `MIX_XDG` - If present, sets the OS as `:linux` for the `:filename.basedir/3` when getting
an user cache dir.
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.1"
@version "0.8.2"
@repo "https://github.com/philss/rustler_precompiled"

def project do
Expand Down

0 comments on commit 7fa483d

Please sign in to comment.