Skip to content

Commit 612fab8

Browse files
committed
Version 1.0.0 release
1 parent d034ca6 commit 612fab8

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## Version 1.0.0
4+
5+
### Improvements
6+
7+
- Adds support for `ecto >= 3.0`
8+
- Adds official support for `elixir == 1.6` and `elixir == 1.7`
9+
10+
311
## Version 0.5.1
412

513
### Documentation

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44

55
`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.
66

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

910

1011
## Installation
1112

1213
```elixir
1314
def deps do
14-
[{:ecto_autoslug_field, "~> 0.5"}]
15+
[{:ecto_autoslug_field, "~> 1.0"}]
1516
end
1617
```
1718

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule EctoAutoslugField.Mixfile do
22
use Mix.Project
33

4-
@version "0.5.1"
4+
@version "1.0.0"
55
@url "https://github.com/sobolevn/ecto_autoslug_field"
66

77
def project do

0 commit comments

Comments
 (0)