Skip to content

Commit

Permalink
Release 0.5.0 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome authored Feb 24, 2021
1 parent 14f9439 commit 9eaecc0
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.5.0 (February 24, 2021)

IMPROVEMENTS:

* Add InService option for AWS [#39](https://github.com/nginxinc/nginx-asg-sync/pull/39)
* Update log format [#42](https://github.com/nginxinc/nginx-asg-sync/pull/42)

## 0.4-1 (November 22, 2019)

IMPROVEMENTS:
Expand Down
7 changes: 7 additions & 0 deletions build/package/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
nginx-asg-sync (0.5.0) unstable; urgency=low

* Add InService option for AWS
* Update log format

-- Luca Comellini <[email protected]> Wed, 24 Feb 2021 07:55:53 -0800

nginx-asg-sync (0.4-1) unstable; urgency=low

* 0.4-1
Expand Down
19 changes: 9 additions & 10 deletions build/package/rpm/SPECS/nginx-asg-sync.spec
Original file line number Diff line number Diff line change
Expand Up @@ -110,26 +110,25 @@ if [ $1 -ge 1 ]; then
fi

%changelog
* Fri Nov 22 2019 Raul Marrero <[email protected]>
- 0.4-1
* Wed Feb 24 2021 Luca Comellini <[email protected]> - 0.5.0
- Add InService option for AWS
- Update log format

* Fri Nov 22 2019 Raul Marrero <[email protected]> - 0.4-1
- Add support to set upstream server parameters (max_conns, max_fails, fail_timeout and slow_start)
- Add support to use wildcards in AWS autoscaling groups
- Allow to use the same AWS region as the instance where the nginx-asg-sync is running

* Wed Sep 4 2019 Raul Marrero <[email protected]>
- 0.3-1
* Wed Sep 4 2019 Raul Marrero <[email protected]> - 0.3-1
- Add support for Azure Virtual Machine Scale Sets

* Fri Jul 27 2018 Peter Kelly <[email protected]>
- 0.2-1
* Fri Jul 27 2018 Peter Kelly <[email protected]> - 0.2-1
- Add supporting guides for contributing and changelog
- Update package layout
- Use new NGINX Plus API

* Wed Aug 30 2017 Michael Pleshakov <[email protected]>
- 0.1-2
* Wed Aug 30 2017 Michael Pleshakov <[email protected]> - 0.1-2
- Make sure nginx-asg-sync works with NGINX Plus R13

* Fri Mar 03 2017 Michael Pleshakov <[email protected]>
- 0.1-1
* Fri Mar 03 2017 Michael Pleshakov <[email protected]> - 0.1-1
- First release
2 changes: 1 addition & 1 deletion cmd/sync/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
var (
configFile = flag.String("config_path", "/etc/nginx/config.yaml", "Path to the config file")
logFile = flag.String("log_path", "", "Path to the log file. If the file doesn't exist, it will be created")
version = "0.4-1"
version = "0.5.0"
)

const connTimeoutInSecs = 10
Expand Down

0 comments on commit 9eaecc0

Please sign in to comment.