From fe2450d73f0c6e488a02b504e7fd14e8bf8c3f41 Mon Sep 17 00:00:00 2001 From: Nirvana Date: Sat, 23 Aug 2014 17:53:44 -0500 Subject: [PATCH] Updated version requirement in mix, fixed readme --- README.md | 4 +++- mix.exs | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 77ff24f..e987657 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ Couchie is a minimalist API for accessing Couchbase 2.0 servers from within elixir. It should work for elrangers as well, as elixir code can be called from erlang (since it runs on the erlang vm.) -### Status: CRUD Working, Simple Views Supported. Requires Elixir 0.13 & R17.0 for maps. +### Status: CRUD Working, Simple Views Supported. +- Tagged version supports R17.0 & Elixir 0.13.0 +- Master requires Elixir 0.15ish and R17ish ### Description diff --git a/mix.exs b/mix.exs index b15befb..be70bfb 100644 --- a/mix.exs +++ b/mix.exs @@ -9,6 +9,7 @@ defmodule Couchie.Mixfile do @doc "Project Details" def project do [ app: :couchie, + elixir: "~> 0.15.0", version: "0.0.6", deps: deps ] end