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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Changelog
## 1.2.5

## 1.2.6
* Add tutorials [#1007](https://github.com/membraneframework/membrane_core/pull/1007), plugins [#1012](https://github.com/membraneframework/membrane_core/pull/1012) and demos [#1013](https://github.com/membraneframework/membrane_core/pull/1013) to the docs.
* Avoid division by 0 in stalker under weird timer behaviour [#1035](https://github.com/membraneframework/membrane_core/pull/1035)


## 1.2.5
_Release retired, please use 1.2.6_

## 1.2.4
* Add `:handle_end_of_stream` and `:handle_start_of_stream` options to debug elements. [#993](https://github.com/membraneframework/membrane_core/pull/993)

Expand Down
8 changes: 5 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
defmodule Membrane.Mixfile do
use Mix.Project

@version "1.2.5"
@version "1.2.6"
@source_ref "v#{@version}"
@hex_packages_path "scripts/elixir/hex_packages.exs"

def project do
[
Expand Down Expand Up @@ -111,7 +112,7 @@ defmodule Membrane.Mixfile do
end

defp packages_in_ecosystem do
{packages, _bindings} = Code.eval_file("scripts/elixir/hex_packages.exs")
{packages, _bindings} = Code.eval_file(@hex_packages_path)
packages
end

Expand Down Expand Up @@ -236,7 +237,8 @@ defmodule Membrane.Mixfile do
links: %{
"GitHub" => link(),
"Membrane Framework Homepage" => "https://membrane.stream"
}
},
files: ~w"lib .formatter.exs mix.exs README* LICENSE* CHANGELOG* #{@hex_packages_path}"
]
end

Expand Down
Loading