Skip to content

Commit

Permalink
0.3.0. See CHANGELOG.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
nodesocket committed Sep 22, 2015
1 parent 9bb5bf4 commit 0eec5c2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
CHANGELOG
=========

## 0.3.0 - *9/22/2015*

- Renamed `jsonlite` to `jsonlite.sh` to clearify it is a shell script.

- Updated the installation section in `README.md` related to creating the symbolic link. The new `ln` command is:

````
ln -s $PWD/jsonlite.sh /usr/local/bin/jsonlite
````

## 0.2.0 - *9/21/2015*

- `get` and `delete` are now idempotent. For example, if you call `get` and pass a uuid that doesn't exist, no error code is returned. Instead a **0** status code is returned and nothing is written to `stdout`.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ JSONlite is a proof of concept, and may not make any sense to actually use. It i
```
git clone https://github.com/nodesocket/jsonlite.git
cd jsonlite
ln -s $PWD/jsonlite /usr/local/bin
ln -s $PWD/jsonlite.sh /usr/local/bin/jsonlite
```

## Requirements
Expand Down Expand Up @@ -72,7 +72,7 @@ Are you sure you want to destroy '/jsonlite.data' (y/n)? y
````
➜ jsonlite version
0.2.0
0.3.0
````

## Changelog
Expand Down
2 changes: 1 addition & 1 deletion jsonlite → jsonlite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

VERSION="0.2.0"
VERSION="0.3.0"
COMMAND=$1
CWD=$(pwd);

Expand Down

0 comments on commit 0eec5c2

Please sign in to comment.