Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IanLuites committed Mar 15, 2020
1 parent aa68e7e commit d72a38d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The package can be installed by adding `common_x` to your list of dependencies i
```elixir
def deps do
[
{:common_x, "~> 0.4"}
{:common_x, "~> 0.5"}
]
end
```
Expand All @@ -26,12 +26,18 @@ The docs can be found at [https://hexdocs.pm/common_x](https://hexdocs.pm/common
The following modules have extension:

- `ApplicationX` (`Application` extension)
- `CodeX` (`Code` extension)
- `EnumX` (`Enum` extension)
- `MapX` (`Map` extension)
- `Macro` (`Macro` extension)

## Changelog

### 2020-03-15 (v0.5.0)

- Add `CodeX.ensure_compiled?/1`, which returns `true` if the module is already compiled or was successfully compiled.
- Add `CodeX.ensure_loaded?/1`, which returns `true` if the module is already loaded or was successfully loaded.

### 2020-03-08 (v0.4.1)

- Add `ApplicationX.main_project/0`, which returns the mix project config of the main application, even when called from dependencies.
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule CommonX.MixProject do
def project do
[
app: :common_x,
version: "0.4.1",
version: "0.5.0",
description: "Extension of common Elixir modules.",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit d72a38d

Please sign in to comment.