Skip to content

Commit

Permalink
Bump version to v1.1.1 (#845)
Browse files Browse the repository at this point in the history
* Bump version to v1.1.1

* Fix docs
  • Loading branch information
FelonEkonom authored Jul 24, 2024
1 parent 57ff6c9 commit 3caf044
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Changelog

## 1.1.1
* Fix 'table identifier does not refer to an existing ETS table' error when inserting metrics into the observability ETS [#835](https://github.com/membraneframework/membrane_core/pull/835)
* Fix 'table identifier does not refer to an existing ETS table' error when inserting metrics into the observability ETS. [#835](https://github.com/membraneframework/membrane_core/pull/835)
* Fix bug occuring in distributed atomic implementation. [#837](https://github.com/membraneframework/membrane_core/pull/837)

## 1.1.0
* Add new callbacks `handle_child_setup_completed/3` and `handle_child_playing/3` in Bins and Pipelines. [#801](https://github.com/membraneframework/membrane_core/pull/801)
Expand Down
2 changes: 1 addition & 1 deletion lib/membrane/bin.ex
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ defmodule Membrane.Bin do
) :: callback_return

@doc """
This callback is deprecated since v1.1.0-rc0
This callback is deprecated since v1.1.0.
Callback invoked when children of `Membrane.ChildrenSpec` are started.
Expand Down
2 changes: 1 addition & 1 deletion lib/membrane/core/parent.ex
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defmodule Membrane.Core.Parent do
Module.defines?(env.module, {:handle_spec_started, 3}, :def) do
warn_message = """
Callback handle_spec_started/3 has been deprecated since \
:membrane_core v1.1.0-rc0, but it is implemented in #{inspect(env.module)}
:membrane_core v1.1.0, but it is implemented in #{inspect(env.module)}
"""

IO.warn(warn_message, [])
Expand Down
2 changes: 1 addition & 1 deletion lib/membrane/pipeline.ex
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ defmodule Membrane.Pipeline do
) :: {[Action.common_actions()], state()}

@doc """
This callback is deprecated since v1.1.0-rc0.
This callback is deprecated since v1.1.0.
Callback invoked when children of `Membrane.ChildrenSpec` are started.
Expand Down
2 changes: 1 addition & 1 deletion lib/membrane/testing/pipeline.ex
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ defmodule Membrane.Testing.Pipeline do
end

@doc """
Deprecated since `v1.1.0-rc0`, use `notify_child/3` instead.
Deprecated since `v1.1.0`, use `notify_child/3` instead.
Sends message to a child by Element name.
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Membrane.Mixfile do
use Mix.Project

@version "1.1.0"
@version "1.1.1"
@source_ref "v#{@version}"

def project do
Expand Down

0 comments on commit 3caf044

Please sign in to comment.