Skip to content

Commit 9eaecc0

Browse files
authored
Release 0.5.0 (#74)
1 parent 14f9439 commit 9eaecc0

File tree

4 files changed

+24
-11
lines changed

4 files changed

+24
-11
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 0.5.0 (February 24, 2021)
2+
3+
IMPROVEMENTS:
4+
5+
* Add InService option for AWS [#39](https://github.com/nginxinc/nginx-asg-sync/pull/39)
6+
* Update log format [#42](https://github.com/nginxinc/nginx-asg-sync/pull/42)
7+
18
## 0.4-1 (November 22, 2019)
29

310
IMPROVEMENTS:

Diff for: build/package/debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
nginx-asg-sync (0.5.0) unstable; urgency=low
2+
3+
* Add InService option for AWS
4+
* Update log format
5+
6+
-- Luca Comellini <[email protected]> Wed, 24 Feb 2021 07:55:53 -0800
7+
18
nginx-asg-sync (0.4-1) unstable; urgency=low
29

310
* 0.4-1

Diff for: build/package/rpm/SPECS/nginx-asg-sync.spec

+9-10
Original file line numberDiff line numberDiff line change
@@ -110,26 +110,25 @@ if [ $1 -ge 1 ]; then
110110
fi
111111

112112
%changelog
113-
* Fri Nov 22 2019 Raul Marrero <[email protected]>
114-
- 0.4-1
113+
* Wed Feb 24 2021 Luca Comellini <[email protected]> - 0.5.0
114+
- Add InService option for AWS
115+
- Update log format
116+
117+
* Fri Nov 22 2019 Raul Marrero <[email protected]> - 0.4-1
115118
- Add support to set upstream server parameters (max_conns, max_fails, fail_timeout and slow_start)
116119
- Add support to use wildcards in AWS autoscaling groups
117120
- Allow to use the same AWS region as the instance where the nginx-asg-sync is running
118121

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

123-
* Fri Jul 27 2018 Peter Kelly <[email protected]>
124-
- 0.2-1
125+
* Fri Jul 27 2018 Peter Kelly <[email protected]> - 0.2-1
125126
- Add supporting guides for contributing and changelog
126127
- Update package layout
127128
- Use new NGINX Plus API
128129

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

133-
* Fri Mar 03 2017 Michael Pleshakov <[email protected]>
134-
- 0.1-1
133+
* Fri Mar 03 2017 Michael Pleshakov <[email protected]> - 0.1-1
135134
- First release

Diff for: cmd/sync/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
var (
1919
configFile = flag.String("config_path", "/etc/nginx/config.yaml", "Path to the config file")
2020
logFile = flag.String("log_path", "", "Path to the log file. If the file doesn't exist, it will be created")
21-
version = "0.4-1"
21+
version = "0.5.0"
2222
)
2323

2424
const connTimeoutInSecs = 10

0 commit comments

Comments
 (0)