Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what would be the version reported by dpkg -I <name>.deb command?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version: 0.5.0


* 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
4 changes: 4 additions & 0 deletions build/package/rpm/SPECS/nginx-asg-sync.spec
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ if [ $1 -ge 1 ]; then
fi

%changelog
* Wed Feb 24 2021 Luca Comellini <[email protected]>
- 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)
Expand Down
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