Skip to content

Commit

Permalink
Version 1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Dec 28, 2018
1 parent d034ca6 commit 612fab8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## Version 1.0.0

### Improvements

- Adds support for `ecto >= 3.0`
- Adds official support for `elixir == 1.6` and `elixir == 1.7`


## Version 0.5.1

### Documentation
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@

`ecto_autoslug_field` is a reusable [`Ecto`](https://github.com/elixir-ecto/ecto) library which can automatically create slugs from other fields. We use [`slugger`](https://github.com/h4cc/slugger) as a default slug-engine.

Note for Ecto >3: we only depend on the `ecto` package (we do not deal with `ecto_sql` at all).
We only depend on the `ecto` package (we do not deal with `ecto_sql` at all).
We support `ecto >= 2.1 and ecto < 4`!


## Installation

```elixir
def deps do
[{:ecto_autoslug_field, "~> 0.5"}]
[{:ecto_autoslug_field, "~> 1.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 EctoAutoslugField.Mixfile do
use Mix.Project

@version "0.5.1"
@version "1.0.0"
@url "https://github.com/sobolevn/ecto_autoslug_field"

def project do
Expand Down

0 comments on commit 612fab8

Please sign in to comment.