Skip to content

Commit

Permalink
chore(release): 0.2.4 [skip ci]
Browse files Browse the repository at this point in the history
## [0.2.4](v0.2.3...v0.2.4) (2019-10-23)

### Bug Fixes

* **saltcheck:** fix broken import and standardise across test files ([](7911b71))
* **saltcheck:** fix invalid `service` test ([](677c956))
* **saltcheck:** remove trailing spaces ([](aada0ae))
* **saltcheck:** replace `map.jinja` references with InSpec conditionals ([](7e9e619))
* **saltcheck:** update for `cron` instead of `cron_settings` ([](26cfa4f))

### Code Refactoring

* **config:** minimise and standardise between `.sls` & `.tst` ([](18585bd))
* **config:** remove duplication in using a loop ([](652ebff))
* **jinja:** used shortened form of `|default` filter ([](a0f891e))
* **saltcheck:** relocate `.tst` files according to 1:1 `.sls` files ([](ee65236)), closes [/github.com//pull/4#issuecomment-544140377](https://github.com//github.com/saltstack-formulas/cron-formula/pull/4/issues/issuecomment-544140377)
* **saltcheck:** use `package.tst` instead of `install.tst` ([](d2c9544))
* **saltcheck:** use root-level `saltcheck-tests` directory ([](6e54c3f))

### Continuous Integration

* **travis:** obtain `saltcheck.py` and run the tests (only on `develop`) ([](8ae46e5))
* **travis:** run `salt-lint` for `.tst` files as well ([](baab964))
* **travis:** standardise `saltcheck` comments ([](e23276b))
* **travis:** update `salt-lint` config for `v0.0.10` [skip ci] ([](b701d79))

### Styles

* **config.tst:** rearrange Jinja statements for clarity ([](8abec54))
* **saltcheck:** merge `absent` & `present` into one `if` block ([](33f344c))
* **saltcheck:** use consistent order of assertions ([](88229f0))

### Tests

* **pillar:** add test for `commented` and clarify each test ([](3d0dcb2))
* **pillar:** ensure `special` is being tested as well ([](951a959))
* **saltcheck:** add first tests ([](9847aff))
* **saltcheck:** add support for `random` values ([](007970f))
* **saltcheck:** add test for `service.available` ([](226eb88))
* **saltcheck:** add test for `service.running` ([](5cdc50f))
* **saltcheck:** avoid `map.jinja`, use the test pillar instead ([](cce5e67))
* **saltcheck:** fix `config` tests ([](9225b18))
* **saltcheck:** remove duplication in `config.tst` using a loop ([](72281c7))
* **saltcheck:** test for `commented` and not `commented` ([](5070611))
* **saltcheck:** test for `special` in `config.tst` as well ([](6f2b323))
* **saltcheck:** use local `map.jinja` to workaround missing `tpldata` ([](8845b3c))
  • Loading branch information
semantic-release-bot committed Oct 23, 2019
1 parent 7e6742b commit 41cca8a
Show file tree
Hide file tree
Showing 5 changed files with 119 additions and 5 deletions.
5 changes: 3 additions & 2 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ This list is sorted by the number of commits per contributor in _descending_ ord

Avatar|Contributor|Contributions
:-:|---|:-:
<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/10231489?v=4' width='36' height='36' alt='@myii'>|[@myii](https://github.com/myii)|27
<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/10231489?v=4' width='36' height='36' alt='@myii'>|[@myii](https://github.com/myii)|57
<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/378158?v=4' width='36' height='36' alt='@dseira'>|[@dseira](https://github.com/dseira)|4
<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1800660?v=4' width='36' height='36' alt='@aboe76'>|[@aboe76](https://github.com/aboe76)|4
<img class='float-left rounded-1' src='https://avatars3.githubusercontent.com/u/3433835?v=4' width='36' height='36' alt='@n-rodriguez'>|[@n-rodriguez](https://github.com/n-rodriguez)|3
<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/219284?v=4' width='36' height='36' alt='@kossmac'>|[@kossmac](https://github.com/kossmac)|2
<img class='float-left rounded-1' src='https://avatars3.githubusercontent.com/u/637990?v=4' width='36' height='36' alt='@bmwiedemann'>|[@bmwiedemann](https://github.com/bmwiedemann)|1
<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1360357?v=4' width='36' height='36' alt='@mchugh19'>|[@mchugh19](https://github.com/mchugh19)|1
<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1011603?v=4' width='36' height='36' alt='@martinhoefling'>|[@martinhoefling](https://github.com/martinhoefling)|1

---

Auto-generated by a [forked version](https://github.com/myii/maintainer) of [gaocegege/maintainer](https://github.com/gaocegege/maintainer) on 2019-10-15.
Auto-generated by a [forked version](https://github.com/myii/maintainer) of [gaocegege/maintainer](https://github.com/gaocegege/maintainer) on 2019-10-23.
52 changes: 52 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,57 @@
# Changelog

## [0.2.4](https://github.com/saltstack-formulas/cron-formula/compare/v0.2.3...v0.2.4) (2019-10-23)


### Bug Fixes

* **saltcheck:** fix broken import and standardise across test files ([](https://github.com/saltstack-formulas/cron-formula/commit/7911b71))
* **saltcheck:** fix invalid `service` test ([](https://github.com/saltstack-formulas/cron-formula/commit/677c956))
* **saltcheck:** remove trailing spaces ([](https://github.com/saltstack-formulas/cron-formula/commit/aada0ae))
* **saltcheck:** replace `map.jinja` references with InSpec conditionals ([](https://github.com/saltstack-formulas/cron-formula/commit/7e9e619))
* **saltcheck:** update for `cron` instead of `cron_settings` ([](https://github.com/saltstack-formulas/cron-formula/commit/26cfa4f))


### Code Refactoring

* **config:** minimise and standardise between `.sls` & `.tst` ([](https://github.com/saltstack-formulas/cron-formula/commit/18585bd))
* **config:** remove duplication in using a loop ([](https://github.com/saltstack-formulas/cron-formula/commit/652ebff))
* **jinja:** used shortened form of `|default` filter ([](https://github.com/saltstack-formulas/cron-formula/commit/a0f891e))
* **saltcheck:** relocate `.tst` files according to 1:1 `.sls` files ([](https://github.com/saltstack-formulas/cron-formula/commit/ee65236)), closes [/github.com/saltstack-formulas/cron-formula/pull/4#issuecomment-544140377](https://github.com//github.com/saltstack-formulas/cron-formula/pull/4/issues/issuecomment-544140377)
* **saltcheck:** use `package.tst` instead of `install.tst` ([](https://github.com/saltstack-formulas/cron-formula/commit/d2c9544))
* **saltcheck:** use root-level `saltcheck-tests` directory ([](https://github.com/saltstack-formulas/cron-formula/commit/6e54c3f))


### Continuous Integration

* **travis:** obtain `saltcheck.py` and run the tests (only on `develop`) ([](https://github.com/saltstack-formulas/cron-formula/commit/8ae46e5))
* **travis:** run `salt-lint` for `.tst` files as well ([](https://github.com/saltstack-formulas/cron-formula/commit/baab964))
* **travis:** standardise `saltcheck` comments ([](https://github.com/saltstack-formulas/cron-formula/commit/e23276b))
* **travis:** update `salt-lint` config for `v0.0.10` [skip ci] ([](https://github.com/saltstack-formulas/cron-formula/commit/b701d79))


### Styles

* **config.tst:** rearrange Jinja statements for clarity ([](https://github.com/saltstack-formulas/cron-formula/commit/8abec54))
* **saltcheck:** merge `absent` & `present` into one `if` block ([](https://github.com/saltstack-formulas/cron-formula/commit/33f344c))
* **saltcheck:** use consistent order of assertions ([](https://github.com/saltstack-formulas/cron-formula/commit/88229f0))


### Tests

* **pillar:** add test for `commented` and clarify each test ([](https://github.com/saltstack-formulas/cron-formula/commit/3d0dcb2))
* **pillar:** ensure `special` is being tested as well ([](https://github.com/saltstack-formulas/cron-formula/commit/951a959))
* **saltcheck:** add first tests ([](https://github.com/saltstack-formulas/cron-formula/commit/9847aff))
* **saltcheck:** add support for `random` values ([](https://github.com/saltstack-formulas/cron-formula/commit/007970f))
* **saltcheck:** add test for `service.available` ([](https://github.com/saltstack-formulas/cron-formula/commit/226eb88))
* **saltcheck:** add test for `service.running` ([](https://github.com/saltstack-formulas/cron-formula/commit/5cdc50f))
* **saltcheck:** avoid `map.jinja`, use the test pillar instead ([](https://github.com/saltstack-formulas/cron-formula/commit/cce5e67))
* **saltcheck:** fix `config` tests ([](https://github.com/saltstack-formulas/cron-formula/commit/9225b18))
* **saltcheck:** remove duplication in `config.tst` using a loop ([](https://github.com/saltstack-formulas/cron-formula/commit/72281c7))
* **saltcheck:** test for `commented` and not `commented` ([](https://github.com/saltstack-formulas/cron-formula/commit/5070611))
* **saltcheck:** test for `special` in `config.tst` as well ([](https://github.com/saltstack-formulas/cron-formula/commit/6f2b323))
* **saltcheck:** use local `map.jinja` to workaround missing `tpldata` ([](https://github.com/saltstack-formulas/cron-formula/commit/8845b3c))

## [0.2.3](https://github.com/saltstack-formulas/cron-formula/compare/v0.2.2...v0.2.3) (2019-10-15)


Expand Down
2 changes: 1 addition & 1 deletion FORMULA
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: cron
os: Debian, Ubuntu, Raspbian, RedHat, Fedora, CentOS, Suse, openSUSE, Gentoo, Funtoo, Arch, Manjaro, Alpine, FreeBSD, OpenBSD, Solaris, SmartOS, MacOS
os_family: Debian, RedHat, Suse, Gentoo, Arch, Alpine, FreeBSD, OpenBSD, Solaris, MacOS
version: 0.2.3
version: 0.2.4
release: 0
minimum_version: 2017.7
summary: Cron formula
Expand Down
7 changes: 5 additions & 2 deletions docs/AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This list is sorted by the number of commits per contributor in *descending* ord
- Contributions
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/10231489?v=4' width='36' height='36' alt='@myii'>`
- `@myii <https://github.com/myii>`_
- 27
- 57
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/378158?v=4' width='36' height='36' alt='@dseira'>`
- `@dseira <https://github.com/dseira>`_
- 4
Expand All @@ -31,11 +31,14 @@ This list is sorted by the number of commits per contributor in *descending* ord
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars3.githubusercontent.com/u/637990?v=4' width='36' height='36' alt='@bmwiedemann'>`
- `@bmwiedemann <https://github.com/bmwiedemann>`_
- 1
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1360357?v=4' width='36' height='36' alt='@mchugh19'>`
- `@mchugh19 <https://github.com/mchugh19>`_
- 1
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1011603?v=4' width='36' height='36' alt='@martinhoefling'>`
- `@martinhoefling <https://github.com/martinhoefling>`_
- 1


----

Auto-generated by a `forked version <https://github.com/myii/maintainer>`_ of `gaocegege/maintainer <https://github.com/gaocegege/maintainer>`_ on 2019-10-15.
Auto-generated by a `forked version <https://github.com/myii/maintainer>`_ of `gaocegege/maintainer <https://github.com/gaocegege/maintainer>`_ on 2019-10-23.
58 changes: 58 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,64 @@
Changelog
=========

`0.2.4 <https://github.com/saltstack-formulas/cron-formula/compare/v0.2.3...v0.2.4>`_ (2019-10-23)
------------------------------------------------------------------------------------------------------

Bug Fixes
^^^^^^^^^


* **saltcheck:** fix broken import and standardise across test files (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/7911b71>`_\ )
* **saltcheck:** fix invalid ``service`` test (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/677c956>`_\ )
* **saltcheck:** remove trailing spaces (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/aada0ae>`_\ )
* **saltcheck:** replace ``map.jinja`` references with InSpec conditionals (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/7e9e619>`_\ )
* **saltcheck:** update for ``cron`` instead of ``cron_settings`` (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/26cfa4f>`_\ )

Code Refactoring
^^^^^^^^^^^^^^^^


* **config:** minimise and standardise between ``.sls`` & ``.tst`` (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/18585bd>`_\ )
* **config:** remove duplication in using a loop (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/652ebff>`_\ )
* **jinja:** used shortened form of ``|default`` filter (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/a0f891e>`_\ )
* **saltcheck:** relocate ``.tst`` files according to 1:1 ``.sls`` files (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/ee65236>`_\ ), closes `/github.com/saltstack-formulas/cron-formula/pull/4#issuecomment-544140377 <https://github.com//github.com/saltstack-formulas/cron-formula/pull/4/issues/issuecomment-544140377>`_
* **saltcheck:** use ``package.tst`` instead of ``install.tst`` (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/d2c9544>`_\ )
* **saltcheck:** use root-level ``saltcheck-tests`` directory (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/6e54c3f>`_\ )

Continuous Integration
^^^^^^^^^^^^^^^^^^^^^^


* **travis:** obtain ``saltcheck.py`` and run the tests (only on ``develop``\ ) (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/8ae46e5>`_\ )
* **travis:** run ``salt-lint`` for ``.tst`` files as well (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/baab964>`_\ )
* **travis:** standardise ``saltcheck`` comments (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/e23276b>`_\ )
* **travis:** update ``salt-lint`` config for ``v0.0.10`` [skip ci] (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/b701d79>`_\ )

Styles
^^^^^^


* **config.tst:** rearrange Jinja statements for clarity (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/8abec54>`_\ )
* **saltcheck:** merge ``absent`` & ``present`` into one ``if`` block (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/33f344c>`_\ )
* **saltcheck:** use consistent order of assertions (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/88229f0>`_\ )

Tests
^^^^^


* **pillar:** add test for ``commented`` and clarify each test (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/3d0dcb2>`_\ )
* **pillar:** ensure ``special`` is being tested as well (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/951a959>`_\ )
* **saltcheck:** add first tests (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/9847aff>`_\ )
* **saltcheck:** add support for ``random`` values (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/007970f>`_\ )
* **saltcheck:** add test for ``service.available`` (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/226eb88>`_\ )
* **saltcheck:** add test for ``service.running`` (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/5cdc50f>`_\ )
* **saltcheck:** avoid ``map.jinja``\ , use the test pillar instead (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/cce5e67>`_\ )
* **saltcheck:** fix ``config`` tests (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/9225b18>`_\ )
* **saltcheck:** remove duplication in ``config.tst`` using a loop (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/72281c7>`_\ )
* **saltcheck:** test for ``commented`` and not ``commented`` (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/5070611>`_\ )
* **saltcheck:** test for ``special`` in ``config.tst`` as well (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/6f2b323>`_\ )
* **saltcheck:** use local ``map.jinja`` to workaround missing ``tpldata`` (\ ` <https://github.com/saltstack-formulas/cron-formula/commit/8845b3c>`_\ )

`0.2.3 <https://github.com/saltstack-formulas/cron-formula/compare/v0.2.2...v0.2.3>`_ (2019-10-15)
------------------------------------------------------------------------------------------------------

Expand Down

0 comments on commit 41cca8a

Please sign in to comment.