From 3fb27fad3a5a3390eb9d341a28e7ab54ed681fea Mon Sep 17 00:00:00 2001 From: Brook <71849503+Primebrook@users.noreply.github.com> Date: Mon, 10 Feb 2025 11:19:10 +0000 Subject: [PATCH 1/2] bump --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 260885f..99fb5c3 100644 --- a/mix.exs +++ b/mix.exs @@ -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}" From 5cf43f10ce4cbc76464e312e50e4b1b88e38e7ee Mon Sep 17 00:00:00 2001 From: Brook <71849503+Primebrook@users.noreply.github.com> Date: Mon, 10 Feb 2025 11:23:22 +0000 Subject: [PATCH 2/2] changelog & readme --- CHANGELOG.md | 10 +++++++++- README.md | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff6d741..660ee53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/README.md b/README.md index dc2789c..b98ce8a 100644 --- a/README.md +++ b/README.md @@ -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 ```