From 868d8fd7a4f74de934e5005ce5d68f4b6f6b5395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20M=C3=A4nnchen?= Date: Fri, 27 Jan 2017 10:59:17 +0000 Subject: [PATCH] Bump version to v1.0.0 --- CHANGELOG.md | 1 + README.md | 2 +- mix.exs | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bea639f..ad8c440 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,3 +7,4 @@ * Renamed Modules to a better name * Introduction of `~e[CRON_EXPRESSION]` sigil * Renamed function to conventions. (`?` for booleans, `!` for functions that raise errors) + * Introduced Ecto Type diff --git a/README.md b/README.md index 4c05200..8a817cc 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Parse Cron Format Strings, Write Cron Format Strings and Caluclate Execution Dat ```elixir def deps do - [{:crontab, "~> 1.0.0-beta.4"}] + [{:crontab, "~> 1.0.0"}] end ``` diff --git a/mix.exs b/mix.exs index 1245c23..c35777f 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Crontab.Mixfile do use Mix.Project - @version "1.0.0-beta.4" + @version "1.0.0" def project do [app: :crontab,