Skip to content

Commit

Permalink
version bump to 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
adamzaninovich committed Apr 13, 2020
1 parent f0a5fed commit 0fa9aeb
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
## 0.4.3
* Default log level to warn in config template so that it doesn't print info in tests ([#2](https://github.com/alice-bot/alice_new/pull/2))
* Updates the test templates for renamed HandlerCase ([#1](https://github.com/alice-bot/alice_new/pull/1))

## 0.4.2
* created AliceNew
* Created AliceNew
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Provides `alice.new.handler` generator as an archive.

To install from hex, run:

$ mix archive.install hex alice_new 0.4.2
$ mix archive.install hex alice_new 0.4.3

To build and install it locally, ensure any previous archive versions are
removed:
Expand Down
2 changes: 1 addition & 1 deletion lib/alice_new/utilities.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule AliceNew.Utilities do
@moduledoc false

def alice_version(), do: "0.4.2"
def alice_version(), do: "0.4.3"

def elixir_version() do
{:ok, version} = Version.parse(System.version())
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule AliceNew.MixProject do
use Mix.Project

@alice_version "0.4.2"
@alice_version "0.4.3"
@github "https://github.com/alice-bot/alice_new"

def project do
Expand Down
2 changes: 1 addition & 1 deletion test/alice_new_handler_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defmodule Mix.Tasks.Alice.New.HandlerTest do
@handler_name "super_awesome"
@app_name "alice_#{@handler_name}"
@module_name "SuperAwesome"
@alice_version "0.4.2"
@alice_version "0.4.3"

test "alice.new.handler with defaults" do
in_tmp("new handler with defaults", fn ->
Expand Down

0 comments on commit 0fa9aeb

Please sign in to comment.