Skip to content

Commit

Permalink
v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kabie committed Jun 23, 2016
1 parent 95ba80a commit c6ce8f9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Note: This lib uses uppercase sigil modifiers. So only works with elixir >= 1.1.

```elixir
iex(1)> use Dye
nil
Dye

iex(2)> ~s"Red text"r
"\e[31mRed text\e[0m"
Expand Down
2 changes: 1 addition & 1 deletion lib/dye.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Dye do
Sigils for colors.
iex> use Dye
nil
Dye
iex> ~s"Red text"r
"\e[31mRed text\e[0m"
iex> ~s"Bright red text"R
Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Dye.Mixfile do

def project do
[app: :dye,
version: "0.4.0",
version: "0.4.1",
elixir: ">= 1.1.0",
description: "Dyeing your terminal!",
package: package,
Expand All @@ -16,8 +16,8 @@ defmodule Dye.Mixfile do

defp package do
[# These are the default files included in the package
files: ["lib", "priv", "mix.exs", "README*", "readme*", "LICENSE*", "license*"],
contributors: ["Kabie"],
files: ["lib", "priv", "mix.exs", "README.md"],
maintainers: ["Kabie"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/Kabie/dye"}]
end
Expand Down

0 comments on commit c6ce8f9

Please sign in to comment.