From adb97fbf08280925abd53cdc9e8bc1d898ddcade Mon Sep 17 00:00:00 2001 From: Boyd Multerer Date: Sat, 3 Oct 2020 19:25:08 +1300 Subject: [PATCH] update mix file to point to new location of makeup_c and use a generic version in the readme --- README.md | 4 +--- mix.exs | 6 +++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3ff6283..3355c77 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,4 @@ # MakeupC - A [Makeup](https://github.com/tmbb/makeup/) lexer for the C language. ## Installation @@ -10,7 +8,7 @@ Add `makeup_c` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:makeup_c, "~> 0.1.0"} + {:makeup_c, ">= 0.0.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 2d2ea35..dffd464 100644 --- a/mix.exs +++ b/mix.exs @@ -1,13 +1,13 @@ defmodule MakeupC.MixProject do use Mix.Project - @version "0.1.0" - @url "https://github.com/boydm/makeup_c" + @version "0.1.1" + @url "https://github.com/elixir-makeup/makeup_c" def project do [ app: :makeup_c, - version: "0.1.0", + version: @version, elixir: "~> 1.4", start_permanent: Mix.env() == :prod, deps: deps(),