Skip to content

Commit

Permalink
Release version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zorbash committed Dec 9, 2016
1 parent e035f4c commit 0736894
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,36 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [0.3.0] - 2016-12-08

### Added

* `:command` option to job DSL

Example:

```elixir
job :kitto_last_commit,
every: {5, :minutes},
command: "curl https://api.github.com/repos/kittoframework/kitto/commits\?page\=1\&per_page\=1"
```

Broadcasts JSON in the form `{ "exit_code": "an integer", "stdout": "a string" }`

* Gist installer gist task
(see: https://github.com/kittoframework/kitto/wiki/Widget-and-Job-Directory#install-widgetsjob-from-a-gist)
* Code reloading in development (see: https://github.com/kittoframework/kitto/wiki/Code-Reloading)
* Job Syntax Validation. When a job contains syntax errors, it is not loaded.
* SSE Events filtering (a7777618)
* [installer] Heroku deployment files (see: https://github.com/kittoframework/kitto/wiki/Deploying-to-Heroku)
* Widget data JSON API (6b8b476c)
* Remote dashboard reloading command (62bd4f90)

### Changed

* Calls to `broadcast/1` inside a job are rewritten to `Kitto.Notifier.broadcast/2`
* Installer checks for app name validity
* The graph type of the graph widget is now configurable (9eeaf5ff)

## [0.2.3] - 2016-11-15

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,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.2.3.ez
mix archive.install https://github.com/kittoframework/archives/raw/master/kitto_new-0.3.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.2.3",
version: "0.3.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.2.3",
version: "0.3.0",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
Expand Down

0 comments on commit 0736894

Please sign in to comment.