Skip to content

Commit 42bac3e

Browse files
chore(release): 3.2.1 [skip ci]
## [3.2.1](v3.2.0...v3.2.1) (2019-10-14) ### Bug Fixes * **rubocop:** add an empty line after magic comments ([](ca963fe)) * **rubocop:** add empty line after guard clause ([](1978566)) * **rubocop:** avoid comma after the last item of a hash ([](a8c5d31)) * **rubocop:** do not prefix reader method names with get_ ([](e7ced7b)) * **rubocop:** extra empty line detected at block body end ([](f4dcb5a)) * **rubocop:** extra empty line detected at class body end ([](fc0af73)) * **rubocop:** favor modifier if usage when having a single-line body ([](e3a9716)) * **rubocop:** missing magic comment “frozen_string_literal: true” ([](a07dbfb)) * **rubocop:** prefer single-quoted strings and split too long line ([](7944e24)) * **rubocop:** remove “is_” prefix from predicate name ([](c3d20bb)) * **rubocop:** simplify complex methods ([](2f6bb0e)) * **rubocop:** the name of source file should use snake_case ([](fde048a)) * **rubocop:** unnecessary utf-8 encoding comment ([](d605400)) * **rubocop:** unused block argument ([](7a0054c)) * **rubocop:** unused method argument ([](da0853a)) * **rubocop:** use “.zero?” instead of “== 0” ([](9108afb)) * **rubocop:** use // around regular expression ([](36f7d3d)) * **rubocop:** use only ascii symbols in comments ([](3edb35c)) * **rubocop:** use the return of the conditional for variable assignment ([](f57d9fb)) * **rubocop:** when using method_missing, define respond_to_missing? ([](b0227e2)) * **rubocop:** when using method_missing, fall back on super ([](db3d181)) ### Continuous Integration * merge travis matrix, add `salt-lint` & `rubocop` to `lint` job ([](18cef25)) * merge travis matrix, add `salt-lint` & `rubocop` to `lint` job ([](2b3acd6)) * **travis:** enforce rubocop ([](c7c5e57)) ### Documentation * **contributing:** remove to use org-level file instead [skip ci] ([](a22c209)) * **readme:** update link to `CONTRIBUTING` [skip ci] ([](09d9a0c))
1 parent ae14d44 commit 42bac3e

File tree

5 files changed

+91
-7
lines changed

5 files changed

+91
-7
lines changed

AUTHORS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ This list is sorted by the number of commits per contributor in _descending_ ord
44

55
Avatar|Contributor|Contributions
66
:-:|---|:-:
7+
<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)|24
78
<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)|17
8-
<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)|15
99
<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1233212?v=4' width='36' height='36' alt='@baby-gnu'>|[@baby-gnu](https://github.com/baby-gnu)|13
1010
<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/1396878?v=4' width='36' height='36' alt='@gravyboat'>|[@gravyboat](https://github.com/gravyboat)|6
1111
<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/91293?v=4' width='36' height='36' alt='@whiteinge'>|[@whiteinge](https://github.com/whiteinge)|4
@@ -29,4 +29,4 @@ Avatar|Contributor|Contributions
2929

3030
---
3131

32-
Auto-generated by a [forked version](https://github.com/myii/maintainer) of [gaocegege/maintainer](https://github.com/gaocegege/maintainer) on 2019-10-03.
32+
Auto-generated by a [forked version](https://github.com/myii/maintainer) of [gaocegege/maintainer](https://github.com/gaocegege/maintainer) on 2019-10-14.

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11
# Changelog
22

3+
## [3.2.1](https://github.com/saltstack-formulas/libvirt-formula/compare/v3.2.0...v3.2.1) (2019-10-14)
4+
5+
6+
### Bug Fixes
7+
8+
* **rubocop:** add an empty line after magic comments ([](https://github.com/saltstack-formulas/libvirt-formula/commit/ca963fe))
9+
* **rubocop:** add empty line after guard clause ([](https://github.com/saltstack-formulas/libvirt-formula/commit/1978566))
10+
* **rubocop:** avoid comma after the last item of a hash ([](https://github.com/saltstack-formulas/libvirt-formula/commit/a8c5d31))
11+
* **rubocop:** do not prefix reader method names with get_ ([](https://github.com/saltstack-formulas/libvirt-formula/commit/e7ced7b))
12+
* **rubocop:** extra empty line detected at block body end ([](https://github.com/saltstack-formulas/libvirt-formula/commit/f4dcb5a))
13+
* **rubocop:** extra empty line detected at class body end ([](https://github.com/saltstack-formulas/libvirt-formula/commit/fc0af73))
14+
* **rubocop:** favor modifier if usage when having a single-line body ([](https://github.com/saltstack-formulas/libvirt-formula/commit/e3a9716))
15+
* **rubocop:** missing magic comment “frozen_string_literal: true” ([](https://github.com/saltstack-formulas/libvirt-formula/commit/a07dbfb))
16+
* **rubocop:** prefer single-quoted strings and split too long line ([](https://github.com/saltstack-formulas/libvirt-formula/commit/7944e24))
17+
* **rubocop:** remove “is_” prefix from predicate name ([](https://github.com/saltstack-formulas/libvirt-formula/commit/c3d20bb))
18+
* **rubocop:** simplify complex methods ([](https://github.com/saltstack-formulas/libvirt-formula/commit/2f6bb0e))
19+
* **rubocop:** the name of source file should use snake_case ([](https://github.com/saltstack-formulas/libvirt-formula/commit/fde048a))
20+
* **rubocop:** unnecessary utf-8 encoding comment ([](https://github.com/saltstack-formulas/libvirt-formula/commit/d605400))
21+
* **rubocop:** unused block argument ([](https://github.com/saltstack-formulas/libvirt-formula/commit/7a0054c))
22+
* **rubocop:** unused method argument ([](https://github.com/saltstack-formulas/libvirt-formula/commit/da0853a))
23+
* **rubocop:** use “.zero?” instead of “== 0” ([](https://github.com/saltstack-formulas/libvirt-formula/commit/9108afb))
24+
* **rubocop:** use // around regular expression ([](https://github.com/saltstack-formulas/libvirt-formula/commit/36f7d3d))
25+
* **rubocop:** use only ascii symbols in comments ([](https://github.com/saltstack-formulas/libvirt-formula/commit/3edb35c))
26+
* **rubocop:** use the return of the conditional for variable assignment ([](https://github.com/saltstack-formulas/libvirt-formula/commit/f57d9fb))
27+
* **rubocop:** when using method_missing, define respond_to_missing? ([](https://github.com/saltstack-formulas/libvirt-formula/commit/b0227e2))
28+
* **rubocop:** when using method_missing, fall back on super ([](https://github.com/saltstack-formulas/libvirt-formula/commit/db3d181))
29+
30+
31+
### Continuous Integration
32+
33+
* merge travis matrix, add `salt-lint` & `rubocop` to `lint` job ([](https://github.com/saltstack-formulas/libvirt-formula/commit/18cef25))
34+
* merge travis matrix, add `salt-lint` & `rubocop` to `lint` job ([](https://github.com/saltstack-formulas/libvirt-formula/commit/2b3acd6))
35+
* **travis:** enforce rubocop ([](https://github.com/saltstack-formulas/libvirt-formula/commit/c7c5e57))
36+
37+
38+
### Documentation
39+
40+
* **contributing:** remove to use org-level file instead [skip ci] ([](https://github.com/saltstack-formulas/libvirt-formula/commit/a22c209))
41+
* **readme:** update link to `CONTRIBUTING` [skip ci] ([](https://github.com/saltstack-formulas/libvirt-formula/commit/09d9a0c))
42+
343
# [3.2.0](https://github.com/saltstack-formulas/libvirt-formula/compare/v3.1.1...v3.2.0) (2019-10-03)
444

545

FORMULA

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: libvirt
22
os: Debian, CentOS, openSUSE, Suse
33
os_family: Debian, RedHat, Suse
4-
version: 3.2.0
4+
version: 3.2.1
55
release: 1
66
minimum_version: 2018.3
77
summary: libvirt formula

docs/AUTHORS.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ This list is sorted by the number of commits per contributor in *descending* ord
1313
* - Avatar
1414
- Contributor
1515
- Contributions
16+
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/10231489?v=4' width='36' height='36' alt='@myii'>`
17+
- `@myii <https://github.com/myii>`_
18+
- 24
1619
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1800660?v=4' width='36' height='36' alt='@aboe76'>`
1720
- `@aboe76 <https://github.com/aboe76>`_
1821
- 17
19-
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/10231489?v=4' width='36' height='36' alt='@myii'>`
20-
- `@myii <https://github.com/myii>`_
21-
- 15
2222
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1233212?v=4' width='36' height='36' alt='@baby-gnu'>`
2323
- `@baby-gnu <https://github.com/baby-gnu>`_
2424
- 13
@@ -83,4 +83,4 @@ This list is sorted by the number of commits per contributor in *descending* ord
8383

8484
----
8585

86-
Auto-generated by a `forked version <https://github.com/myii/maintainer>`_ of `gaocegege/maintainer <https://github.com/gaocegege/maintainer>`_ on 2019-10-03.
86+
Auto-generated by a `forked version <https://github.com/myii/maintainer>`_ of `gaocegege/maintainer <https://github.com/gaocegege/maintainer>`_ on 2019-10-14.

docs/CHANGELOG.rst

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,50 @@
22
Changelog
33
=========
44

5+
`3.2.1 <https://github.com/saltstack-formulas/libvirt-formula/compare/v3.2.0...v3.2.1>`_ (2019-10-14)
6+
---------------------------------------------------------------------------------------------------------
7+
8+
Bug Fixes
9+
^^^^^^^^^
10+
11+
12+
* **rubocop:** add an empty line after magic comments (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/ca963fe>`_\ )
13+
* **rubocop:** add empty line after guard clause (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/1978566>`_\ )
14+
* **rubocop:** avoid comma after the last item of a hash (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/a8c5d31>`_\ )
15+
* **rubocop:** do not prefix reader method names with get_ (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/e7ced7b>`_\ )
16+
* **rubocop:** extra empty line detected at block body end (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/f4dcb5a>`_\ )
17+
* **rubocop:** extra empty line detected at class body end (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/fc0af73>`_\ )
18+
* **rubocop:** favor modifier if usage when having a single-line body (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/e3a9716>`_\ )
19+
* **rubocop:** missing magic comment “frozen_string_literal: true” (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/a07dbfb>`_\ )
20+
* **rubocop:** prefer single-quoted strings and split too long line (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/7944e24>`_\ )
21+
* **rubocop:** remove “is_” prefix from predicate name (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/c3d20bb>`_\ )
22+
* **rubocop:** simplify complex methods (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/2f6bb0e>`_\ )
23+
* **rubocop:** the name of source file should use snake_case (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/fde048a>`_\ )
24+
* **rubocop:** unnecessary utf-8 encoding comment (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/d605400>`_\ )
25+
* **rubocop:** unused block argument (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/7a0054c>`_\ )
26+
* **rubocop:** unused method argument (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/da0853a>`_\ )
27+
* **rubocop:** use “.zero?” instead of “== 0” (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/9108afb>`_\ )
28+
* **rubocop:** use // around regular expression (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/36f7d3d>`_\ )
29+
* **rubocop:** use only ascii symbols in comments (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/3edb35c>`_\ )
30+
* **rubocop:** use the return of the conditional for variable assignment (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/f57d9fb>`_\ )
31+
* **rubocop:** when using method_missing, define respond_to_missing? (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/b0227e2>`_\ )
32+
* **rubocop:** when using method_missing, fall back on super (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/db3d181>`_\ )
33+
34+
Continuous Integration
35+
^^^^^^^^^^^^^^^^^^^^^^
36+
37+
38+
* merge travis matrix, add ``salt-lint`` & ``rubocop`` to ``lint`` job (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/18cef25>`_\ )
39+
* merge travis matrix, add ``salt-lint`` & ``rubocop`` to ``lint`` job (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/2b3acd6>`_\ )
40+
* **travis:** enforce rubocop (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/c7c5e57>`_\ )
41+
42+
Documentation
43+
^^^^^^^^^^^^^
44+
45+
46+
* **contributing:** remove to use org-level file instead [skip ci] (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/a22c209>`_\ )
47+
* **readme:** update link to ``CONTRIBUTING`` [skip ci] (\ ` <https://github.com/saltstack-formulas/libvirt-formula/commit/09d9a0c>`_\ )
48+
549
`3.2.0 <https://github.com/saltstack-formulas/libvirt-formula/compare/v3.1.1...v3.2.0>`_ (2019-10-03)
650
---------------------------------------------------------------------------------------------------------
751

0 commit comments

Comments
 (0)