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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The package can be installed by adding `membrane_webrtc_plugin` to your list of
```elixir
def deps do
[
{:membrane_webrtc_plugin, "~> 0.25.1"}
{:membrane_webrtc_plugin, "~> 0.25.2"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion examples/live_view/assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { Socket } from "phoenix";
import { LiveSocket } from "phoenix_live_view";
import topbar from "../vendor/topbar";

import { createCaptureHook, createPlayerHook } from "membrane_webrtc_live";
import { createCaptureHook, createPlayerHook } from "membrane_webrtc_plugin";

let Hooks = {};
const iceServers = [{ urls: "stun:stun.l.google.com:19302" }];
Expand Down
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Membrane.WebRTC.Plugin.Mixfile do
use Mix.Project

@version "0.25.1"
@version "0.25.2"
@github_url "https://github.com/membraneframework/membrane_webrtc_plugin"

def project do
Expand Down Expand Up @@ -82,6 +82,7 @@ defmodule Membrane.WebRTC.Plugin.Mixfile do
defp package do
[
maintainers: ["Membrane Team"],
files: ~w(mix.exs lib assets package.json README.md LICENSE),
licenses: ["Apache-2.0"],
links: %{
"GitHub" => @github_url,
Expand Down