Skip to content

Commit afc81c9

Browse files
committed
Fix broken release: add hex_packages.exs to package files
1 parent a1a88e4 commit afc81c9

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
3+
## 1.2.6
4+
Fix broken 1.2.5 release [#1043](https://github.com/membraneframework/membrane_core/pull/1043)
5+
26
## 1.2.5
37
* 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.
48
* Avoid division by 0 in stalker under weird timer behaviour [#1035](https://github.com/membraneframework/membrane_core/pull/1035)

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)