Skip to content

Commit 95fc2ec

Browse files
author
vcarvajal
committed
bump version to 1.9.0
1 parent 71b7701 commit 95fc2ec

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GoLang Module Release Notes
22

3-
## 1.8.2 2020-10-19
3+
## 1.9.0 2020-10-22
44

55
* Added `server_flavor` config option.
66

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.2
1+
1.9.0

config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,9 +346,9 @@ func ServerIdentifier(id string) ModuleConfigOption {
346346

347347
// ServerFlavor is a function argument that sets the server
348348
// flavor for custom setups using revproxy.
349-
func ServerFlavor(serverModule string) ModuleConfigOption {
349+
func ServerFlavor(serverFlavor string) ModuleConfigOption {
350350
return func(c *ModuleConfig) error {
351-
c.serverFlavor = serverModule
351+
c.serverFlavor = serverFlavor
352352
return nil
353353
}
354354
}

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package sigsci
22

3-
const version = "1.8.2"
3+
const version = "1.9.0"

0 commit comments

Comments
 (0)