Skip to content

Commit

Permalink
Merge pull request #55 from snowplow/release/0.2.1
Browse files Browse the repository at this point in the history
Release/0.2.1
  • Loading branch information
jbeemster committed May 17, 2016
2 parents 55ab699 + bdf4ab4 commit c05503f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 0.2.1 (2016-05-17)
--------------------------
Iglu upload script should use -XPUT rather than -XPOST (#54)
Iglu upload script should set isPublic to true not false (#49)

Version 0.2.0 (2016-04-08)
--------------------------
Using static name in init.d scripts to avoid corruption of pid file (#37)
Expand Down
4 changes: 2 additions & 2 deletions Packerfile.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"source_ami": "ami-05dddc6f",
"instance_type": "t2.small",
"ssh_username": "ubuntu",
"ami_name": "snowplow-mini-0.2.0-{{ timestamp }}-hvm-ebs-amd64",
"ami_name": "snowplow-mini-0.2.1-{{ timestamp }}-hvm-ebs-amd64",
"ami_groups": [ "all" ],
"ami_regions": [ "eu-west-1", "us-west-2", "us-west-1", "eu-central-1", "ap-southeast-1", "ap-northeast-1", "ap-southeast-2", "sa-east-1" ],
"ami_description": "Snowplow Mini - The Snowplow Pipeline in a box",
"tags": {
"OS_Version": "Ubuntu-12.04",
"Release": "0.2.0"
"Release": "0.2.1"
}
}
],
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ limitations under the License.
[travis]: https://travis-ci.org/snowplow/snowplow-mini
[travis-image]: https://travis-ci.org/snowplow/snowplow-mini.svg?branch=master

[release-image]: http://img.shields.io/badge/release-0.2.0-blue.svg?style=flat
[release-image]: http://img.shields.io/badge/release-0.2.1-blue.svg?style=flat
[releases]: https://github.com/snowplow/snowplow-mini/releases

[license-image]: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1
2 changes: 1 addition & 1 deletion resources/scripts/iglu_server_upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ for schemapath in $(find $schemafolder -type f | grep 'jsonschema'); do
echo $schemapath | awk -F '/' '{print $(NF-3)"/"$(NF-2)"/"$(NF-1)"/"$(NF)}';
)";
echo "Uploading schema in file '$schemapath' to endpoint '$destination'";
result="$(curl --silent "${destination}?isPublic=false" -XPOST -d @$schemapath -H "apikey: $write_api_key")";
result="$(curl --silent "${destination}?isPublic=true" -XPUT -d @$schemapath -H "apikey: $write_api_key")";
echo " - Result: $(echo ${result} | xargs)"

# Process result
Expand Down

0 comments on commit c05503f

Please sign in to comment.