Skip to content

Commit 649a962

Browse files
committed
v0.5.0
1 parent c8742ac commit 649a962

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## v0.5.0 (unreleased)
1+
## v0.5.0 (2016-08-28)
22

33
* cli: Allow to repeat the same chaos event with `-count` in order to terminate
44
multiple EC2 instances of an auto scaling group. Use `-interval` to configure
@@ -8,6 +8,7 @@
88
* lib: Move processing of environment variables from CLI to library. Added
99
`DefaultConfig()` for this purpose.
1010
* lib: Add `EventsSince()` to get all chaos events since a specific time.
11+
* lib: Add prefix to HTTP error messages.
1112
* Build project with Go 1.7.
1213

1314
## v0.4.0 (2016-07-15)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Use the tool to:
4646
-group ExampleAutoScalingGroup -strategy ShutdownInstance
4747
```
4848

49-
* Trigger the same event 5 times at intervals of 10 seconds with a probability of 20%:
49+
* Trigger the same event 5 times at intervals of 10 seconds, with a probability of 20% per event:
5050

5151
```bash
5252
chaosmonkey -endpoint http://example.com:8080 \

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ package main
22

33
// Version is the current version of the chaosmonkey tool. A ".dev" suffix
44
// denotes that the version is currently being developed.
5-
const Version = "v0.5.0.dev"
5+
const Version = "v0.5.0"

0 commit comments

Comments
 (0)