Skip to content

Commit

Permalink
Merge pull request #1 from elixir-makeup/boyd
Browse files Browse the repository at this point in the history
update mix file to point to new location of makeup_c
  • Loading branch information
boydm authored Oct 3, 2020
2 parents f89ed5a + adb97fb commit 2d3dd6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# MakeupC
<!-- [![Build Status](https://travis-ci.org/boydm/makeup_c.svg?branch=master)](https://travis-ci.org/boydm/makeup_c)
-->
A [Makeup](https://github.com/tmbb/makeup/) lexer for the C language.

## Installation
Expand All @@ -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
```
Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -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(),
Expand Down

0 comments on commit 2d3dd6d

Please sign in to comment.