Skip to content

Commit

Permalink
release 0.6.0: release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
arichardet committed Feb 27, 2017
1 parent e15dc1f commit 1afdb3f
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions docs/content/release-notes/0.6.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
---
title: "0.6.0"
date: "2017-02-27"
slug: "0-6-0"

menu:
main:
parent: "release-notes"
identifier: 0.6.0
weight: -060

---

## Release Date

2017-02-27 0.6.0

## Features

This release includes new systemd and unarchive capabilities, improvements to the user resource, and generators for man pages and bash autocomplete. With this release, Converge is no longer cross compiled for freebsd and solaris.

### Cross Compliation

With this release, Converge will no longer include cross compilation for freebsd and solaris.

### Module Improvements

#### Systemd

Support for controlling systemd services has been added via [\#602](https://github.com/asteris-llc/converge/pull/602).

```hcl
systemd.unit.state "ssh" {
unit = "ssh.service"
state = "running"
}
```

#### Unarchive

Managing several archive formats such as `zip` and `tar.gz` is available through unarchive support in [\#592](https://github.com/asteris-llc/converge/pull/592).

```hcl
unarchive "consul.zip" {
source = "/tmp/consul.zip"
destination = "/tmp/consul"
}
```

#### User

A user can now be enabled or disabled with the addition of [\#581](https://github.com/asteris-llc/converge/pull/581).

Additionally, there are updates to the diffs presented for user with [\#584](https://github.com/asteris-llc/converge/pull/584) and [\#588](https://github.com/asteris-llc/converge/pull/588).

### Usablilty Enhancements

#### Module Author Improvement

A new helper method has been added to for use with `resource.Status`. `RaiseLevelForDiffs` will raise the status level to `StatusWillChange` if any differences exist via [\#587](https://github.com/asteris-llc/converge/pull/587).

#### Various Generators

Generators for man pages and bash autocompletion have been added via [\#571](https://github.com/asteris-llc/converge/pull/571).

## Changelog

See the Converge [changelog](https://github.com/asteris-llc/converge/blob/master/CHANGELOG.md) for additional details on the 0.6.0 release.

## Support

We provide support via the Converge [Slack](http://converge-slack.aster.is/) and through [GitHub Issues](https://github.com/asteris-llc/converge/issues).

0 comments on commit 1afdb3f

Please sign in to comment.