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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change Log

## [0.5.0] - 2024-12-14

Maintenance release.

### Fixed
- Fix "defined in application" runtime warnings ([@alexgleason](https://github.com/alexgleason))
- Remove unused @requred_keys ([@alexgleason](https://github.com/alexgleason))
- Fix duplicate keys warnings ([@alexgleason](https://github.com/alexgleason))

### Chore

- Upgrade dev dependencies
- Remove empty config file
- Regenerate formatter config and gitignore with the latest Elixir
- Fix CI workflow

## [0.4.1] - 2021-01-14
### Fixed
- Call the youtube oembed with https ([@fatboypunk](https://github.com/fatboypunk))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Add `oembed` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[{:oembed, "~> 0.4.1"}]
[{:oembed, "~> 0.5.0"}]
end
```

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 OEmbed.Mixfile do
use Mix.Project

@version "0.4.1"
@version "0.5.0"

def project do
[
Expand Down
Loading