Skip to content

Commit 8e93a16

Browse files
committed
Merge pull request #5 from cbgbt/master
0.4.1. See CHANGELOG.md.
2 parents 09de3e0 + ef7d186 commit 8e93a16

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
CHANGELOG
22
=========
33

4+
## 0.4.1 - *9/22/2015*
5+
6+
- Support systems where uuidgen creates lowercase UUIDs
7+
48
## 0.4.0 - *9/22/2015*
59

610
- Renamed the `destroy` command to `drop`.

jsonlite.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
VERSION="0.4.0"
5+
VERSION="0.4.1"
66
COMMAND=$1
77
CWD=$(pwd);
88

@@ -27,7 +27,7 @@ case "$COMMAND" in
2727
fi
2828

2929
# Is this portable across distros?
30-
UUID=$(uuidgen)
30+
UUID=$(uuidgen | awk '{print toupper($0)}')
3131

3232
# Piping to python -m json.tool to pretty print json is super expensive.
3333
# What would be a good alternative?

0 commit comments

Comments
 (0)