Skip to content

Commit

Permalink
Release v1.4.0 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitrino committed Feb 28, 2019
1 parent 812c309 commit 6ca4f43
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 1.4.0
Now hex is supported by an open organization and we are happy for new contributors and maintainers.

### 🚀Features
- Add support multiple currencies with map(JSON) type [#101]
- Add support multiple currencies with PostgreSQL composite type [#96]
- Add new Ecto Type for Currency [#87]

### ⛔️Deprecations
- Deprecate `Money.Ecto.Type`, use `Money.Ecto.Amount.Type` module instead

### 🐛Bug Fixes
- Fix dividing negative one [#95]
- Fix cast in `Money.Ecto.Amount.Type` from money with currency other than a default [#100]

### 🧰 Maintenance
- Add credo and fix styles [#103]
- Formatting codebase [#102]
- Move repo to OSS organization and fix repo links after transfer [#99]
- Add Elixir 1.8.1 to CI [#97]

## 1.3.2

- Add Guaraní sign for PYG [#94]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ Add the following to your `mix.exs`:

```elixir
def deps do
[{:money, "~> 1.3"}]
[{:money, "~> 1.4"}]
end
```
then run [`mix deps.get`](http://elixir-lang.org/getting-started/mix-otp/introduction-to-mix).
Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Money.Mixfile do
use Mix.Project

@version "1.3.2"
@version "1.4.0"
@github_url "https://github.com/elixirmoney/money"

def project do
Expand Down Expand Up @@ -52,8 +52,8 @@ defmodule Money.Mixfile do

defp package do
[
maintainers: ["Giulio De Donato", "Andrew Timberlake"],
contributors: ["Giulio De Donato", "Andrew Timberlake"],
maintainers: ["Petr Stepchenko", "Giulio De Donato", "Andrew Timberlake"],
contributors: ["Petr Stepchenko", "Giulio De Donato", "Andrew Timberlake"],
licenses: ["MIT"],
links: %{"GitHub" => @github_url}
]
Expand Down

0 comments on commit 6ca4f43

Please sign in to comment.