Skip to content

Commit

Permalink
Bump version to v1.9.0 (#578)
Browse files Browse the repository at this point in the history
  • Loading branch information
agarciamontoro authored Apr 19, 2023
1 parent ad71e55 commit ecc4c32
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ else
ifeq ($(BRANCH_EXISTS), 0)
@echo "Error: branch ${BRANCH_NAME} already exists"
else
@echo $(NEXT_VER) | grep -Eq ^v[0-9]+\.[0-9]+\.[0-9]+$ || echo "The next version, '$(NEXT_VER)' is not of the form vMAJOR.MINOR.PATCH" && exit 1
@echo $(NEXT_VER) | grep -Eq ^v[0-9]+\.[0-9]+\.[0-9]+$ || (echo "The next version, '$(NEXT_VER)' is not of the form vMAJOR.MINOR.PATCH" && exit 1)
git checkout -b $(BRANCH_NAME) origin/master
@echo "Applying changes"
@for file in $(shell grep -rPl --include="*.go" --include="*.json" $(MATCH)); do \
Expand Down
2 changes: 1 addition & 1 deletion config/deployer.sample.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"AdminEmail": "[email protected]",
"AdminUsername": "sysadmin",
"AdminPassword": "Sys@dmin-sample1",
"LoadTestDownloadURL": "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.8.0/mattermost-load-test-ng-v1.8.0-linux-amd64.tar.gz",
"LoadTestDownloadURL": "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.9.0/mattermost-load-test-ng-v1.9.0-linux-amd64.tar.gz",
"LogSettings": {
"EnableConsole": true,
"ConsoleLevel": "INFO",
Expand Down
2 changes: 1 addition & 1 deletion deployment/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ type Config struct {
// URL from where to download load-test-ng binaries and configuration files.
// The configuration files provided in the package will be overridden in
// the deployment process.
LoadTestDownloadURL string `default:"https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.8.0/mattermost-load-test-ng-v1.8.0-linux-amd64.tar.gz" validate:"url"`
LoadTestDownloadURL string `default:"https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.9.0/mattermost-load-test-ng-v1.9.0-linux-amd64.tar.gz" validate:"url"`
ElasticSearchSettings ElasticSearchSettings
JobServerSettings JobServerSettings
LogSettings logger.Settings
Expand Down

0 comments on commit ecc4c32

Please sign in to comment.