Skip to content

Commit

Permalink
0.5.6 / 2018-01-28
Browse files Browse the repository at this point in the history
================

  * Elixir 1.6 support (#262)
  * Add new, init, clean, and version to usage message (#259)
  * No change-log in README anymore. It's always contained in a release
  • Loading branch information
wende committed Jan 28, 2018
1 parent ced1d13 commit a431622
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/stable/elm.js
Original file line number Diff line number Diff line change
Expand Up @@ -19560,7 +19560,7 @@ var _user$project$Compiler$glueStart = A2(
_elm_lang$core$Basics_ops['++'],
_user$project$Helpers$ind(0),
A2(_elm_lang$core$Basics_ops['++'], 'use Elchemy', '\n'));
var _user$project$Compiler$version = '0.5.5';
var _user$project$Compiler$version = '0.5.6';
var _user$project$Compiler$getCode = F2(
function (context, statements) {
var shadowsBasics = _user$project$ExContext$importBasicsWithoutShadowed(context);
Expand Down
2 changes: 1 addition & 1 deletion elchemy
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash


version="0.5.5"
version="0.5.6"
set -e

function create_file {
Expand Down
2 changes: 1 addition & 1 deletion elchemy-core
Submodule elchemy-core updated 1 files
+3 −3 mix.exs
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Elchemy.Mixfile do
[app: :elchemy,
name: "Elchemy Compiler",
description: "Mix compiler wrapper around Elchemy project",
version: "0.5.5",
version: "0.5.6",
elixir: "~> 1.4",
description: "",
package: package(),
Expand Down Expand Up @@ -35,11 +35,11 @@ defmodule Elchemy.Mixfile do

# Dependencies can be Hex packages:
#
# {:my_dep, "~> 0.5.5"}
# {:my_dep, "~> 0.5.6"}
#
# Or git/path repositories:
#
# {:my_dep, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.5.5"}
# {:my_dep, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.5.6"}
#
# Type "mix help deps" for more examples and options
defp deps do
Expand Down
2 changes: 1 addition & 1 deletion src/Compiler.elm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import Regex exposing (Regex, HowMany(..), regex)
-}
version : String
version =
"0.5.5"
"0.5.6"


glueStart : String
Expand Down

0 comments on commit a431622

Please sign in to comment.