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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v0.1.3] - 2024-02-10

### Fixed

- Includes the native source code in the hex release if folks want to build rust backend locally (can be done by setting `EXSTATIC_BUILD=true`


## [v0.1.2] - 2024-02-08

### Fixed
Expand Down Expand Up @@ -38,7 +45,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
Initial Release: Introduced Exstatic, a statistical distribution library for Elixir with native Rust implementations.

[Unreleased]: https://github.com/Intellection/exstatic/compare/v0.1.2...HEAD
[Unreleased]: https://github.com/Intellection/exstatic/compare/v0.1.3...HEAD
[v0.1.3]: https://github.com/Intellection/exstatic/compare/v0.1.3...v0.1.2
[v0.1.2]: https://github.com/Intellection/exstatic/compare/v0.1.2...v0.1.1
[v0.1.1]: https://github.com/Intellection/exstatic/compare/v0.1.1...v0.1.0
[v0.1.0]: https://github.com/Intellection/exstatic/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Add `exstatic` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:exstatic, "~> 0.1.2", organization: "zappi"}
{:exstatic, "~> 0.1.3", organization: "zappi"}
]
end
```
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 Exstatic.MixProject do
use Mix.Project

@version "0.1.2"
@version "0.1.3"
@repo "Intellection/exstatic"
@source_url "https://github.com/#{@repo}"

Expand Down