Skip to content

Commit

Permalink
release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fraenki committed Oct 6, 2020
1 parent ee623e4 commit fc42137
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

All notable changes to this project will be documented in this file.

## Release 0.1.0
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

**Features**
## v1.0.0
Initial release

**Bugfixes**

**Known Issues**
[Unreleased]: https://github.com/markt-de/puppet-activemq/compare/v1.0.0...HEAD
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
- [Security, Roles, Users and Queues](#security-roles-users-and-queues)
- [Custom configuration](#custom-configuration)
1. [Reference](#reference)
1. [Limitations](#limitations)
1. [Development](#development)
- [Contributing](#contributing)
- [Fork](#fork)
Expand Down Expand Up @@ -201,6 +202,10 @@ The module is designed for Hiera so it is highly recommended if you need to chan

Classes and parameters are documented in [REFERENCE.md](REFERENCE.md).

## Limitations

Upgrades of ActiveMQ Artemis are currently not supported, but this feature is planned for a later release of this module.

## Development

### Contributing
Expand Down
2 changes: 1 addition & 1 deletion manifests/instance.pp
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
$_roles_tmp = $x[1]['roles'].reduce([]) |$m2, $z| {
# Only add roles that are in use (=enabled).
if (($z[0] =~ String) and ($z[1] =~ Boolean) and ($z[1] == true)) {
$m2 + "${z[0]}"
$m2 + $z[0]
} else { $m2 }
}
if ($_roles_tmp =~ Array and !empty($_roles_tmp)) {
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fraenki-activemq",
"version": "1.0.0",
"author": "fraenki",
"author": "markt.de",
"summary": "Manage ActiveMQ Artemis standalone and clusters",
"license": "BSD-2-Clause",
"source": "https://github.com/markt-de/puppet-activemq",
Expand Down

0 comments on commit fc42137

Please sign in to comment.