Skip to content

Commit

Permalink
0.1.1 Version bump. 💎 💎 💎
Browse files Browse the repository at this point in the history
  • Loading branch information
merqlove committed Jul 27, 2016
1 parent 0a7b4ed commit aedcb54
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule RedixPubsubFastlane.Mixfile do
use Mix.Project

@project_url "https://github.com/merqlove/redix_pubsub_fastlane"
@version "0.1.0"
@version "0.1.1"

def project do
[app: :redix_pubsub_fastlane,
Expand All @@ -12,6 +12,7 @@ defmodule RedixPubsubFastlane.Mixfile do
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
aliases: ["publish": ["hex.publish", "hex.docs", &git_tag/1]],
source_url: @project_url,
homepage_url: @project_url,
description: "Fastlane pattern based on Redix.PubSub interface for Elixir",
Expand Down Expand Up @@ -63,6 +64,10 @@ defmodule RedixPubsubFastlane.Mixfile do
]
end

defp git_tag(_args) do
System.cmd "git", ["tag", "v" <> Mix.Project.config[:version]]
end

defp docs do
[
main: "Redix.PubSub.Fastlane",
Expand Down

0 comments on commit aedcb54

Please sign in to comment.