Skip to content

Commit 3d30cbf

Browse files
authored
Fix broken release: add hex_packages.exs to package files (#1043)
1 parent a1a88e4 commit 3d30cbf

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Changelog
2-
## 1.2.5
2+
3+
## 1.2.6
34
* 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.
45
* Avoid division by 0 in stalker under weird timer behaviour [#1035](https://github.com/membraneframework/membrane_core/pull/1035)
56

7+
8+
## 1.2.5
9+
_Release retired, please use 1.2.6_
10+
611
## 1.2.4
712
* Add `:handle_end_of_stream` and `:handle_start_of_stream` options to debug elements. [#993](https://github.com/membraneframework/membrane_core/pull/993)
813

mix.exs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
defmodule Membrane.Mixfile do
22
use Mix.Project
33

4-
@version "1.2.5"
4+
@version "1.2.6"
55
@source_ref "v#{@version}"
6+
@hex_packages_path "scripts/elixir/hex_packages.exs"
67

78
def project do
89
[
@@ -111,7 +112,7 @@ defmodule Membrane.Mixfile do
111112
end
112113

113114
defp packages_in_ecosystem do
114-
{packages, _bindings} = Code.eval_file("scripts/elixir/hex_packages.exs")
115+
{packages, _bindings} = Code.eval_file(@hex_packages_path)
115116
packages
116117
end
117118

@@ -236,7 +237,8 @@ defmodule Membrane.Mixfile do
236237
links: %{
237238
"GitHub" => link(),
238239
"Membrane Framework Homepage" => "https://membrane.stream"
239-
}
240+
},
241+
files: ~w"lib .formatter.exs mix.exs README* LICENSE* CHANGELOG* #{@hex_packages_path}"
240242
]
241243
end
242244

0 commit comments

Comments
 (0)