Bump fix version
This commit is contained in:
parent
6f3ae2f060
commit
98f4cf6a69
|
@ -4,6 +4,11 @@
|
||||||
|
|
||||||
Please see: https://github.com/psyreactor/sonarqube-ruby/releases
|
Please see: https://github.com/psyreactor/sonarqube-ruby/releases
|
||||||
|
|
||||||
|
### 1.2.1 (08/09/2020)
|
||||||
|
|
||||||
|
- Fix
|
||||||
|
* Fix groups parameter validation
|
||||||
|
|
||||||
### 1.2.0 (03/09/2020)
|
### 1.2.0 (03/09/2020)
|
||||||
|
|
||||||
- New features
|
- New features
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
[documentation](https://www.rubydoc.info/gems/sonarqube/frames)
|
[documentation](https://www.rubydoc.info/gems/sonarqube/frames)
|
||||||
|
|
||||||
Sonarqube is a Ruby wrapper and CLI for the Sonarqube API
|
Sonarqube is a Ruby wrapper and CLI for the Sonarqube API
|
||||||
As of version `1.2.0` this gem only supports Sonarqube 7.9.
|
As of version `1.2.1` this gem only supports Sonarqube 7.9.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,7 @@ group = Sonarqube.add_member('AXQRcKrW9pRiZzanEJ2E', 'test-user')
|
||||||
# => #<Sonarqube::ObjectifiedHash:46220 {hash: {}}
|
# => #<Sonarqube::ObjectifiedHash:46220 {hash: {}}
|
||||||
group.to_hash.empty?
|
group.to_hash.empty?
|
||||||
# => true
|
# => true
|
||||||
group = Sonarqube.add_member('AXQRcKrW9pRiZzanEJ2E', 'test-user', {name: 'sonar-groups'})
|
group = Sonarqube.add_member(nil, 'test-user', {name: 'sonar-groups'})
|
||||||
# => #<Sonarqube::ObjectifiedHash:46220 {hash: {}}
|
# => #<Sonarqube::ObjectifiedHash:46220 {hash: {}}
|
||||||
group.to_hash.empty?
|
group.to_hash.empty?
|
||||||
# => true
|
# => true
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
module Sonarqube
|
module Sonarqube
|
||||||
VERSION = '1.2.0'
|
VERSION = '1.2.1'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue