Skip to content

Commit

Permalink
Release version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zorbash committed Jan 12, 2017
1 parent b20064a commit 1b245f5
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 3 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,39 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [0.4.0] - 2016-01-12

### Added

* Exponential back-off support for failing jobs (b20064a)

* Widget generator task

```shell
mix kitto.gen.widget weather
# Generates:
# * widgets/weather/weather.js
# * widgets/weather/weather.scss
```

* Job generator task

```shell
mix kitto.gen.job weather
# Generates: jobs/weather.exs
```

* Dashboard generator task

```shell
mix kitto.gen.dashboard weather
# Generates: dashboards/weather.html.eex
```

### Changed

* Warning and danger widget colors are swapped in new generated dashboards

## [0.3.2] - 2016-12-22

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ To start creating your own, read [below](https://github.com/kittoframework/kitto
Install the latest archive

```shell
mix archive.install https://github.com/kittoframework/archives/raw/master/kitto_new-0.3.2.ez
mix archive.install https://github.com/kittoframework/archives/raw/master/kitto_new-0.4.0.ez
```

## Requirements
Expand Down
2 changes: 1 addition & 1 deletion installer/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Kitto.New.Mixfile do

def project do
[app: :kitto_new,
version: "0.3.2",
version: "0.4.0",
elixir: "~> 1.3"]
end

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Kitto.Mixfile do

def project do
[app: :kitto,
version: "0.3.2",
version: "0.4.0",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
Expand Down

0 comments on commit 1b245f5

Please sign in to comment.