Skip to content

Commit 0eec5c2

Browse files
committed
0.3.0. See CHANGELOG.md.
1 parent 9bb5bf4 commit 0eec5c2

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

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

4+
## 0.3.0 - *9/22/2015*
5+
6+
- Renamed `jsonlite` to `jsonlite.sh` to clearify it is a shell script.
7+
8+
- Updated the installation section in `README.md` related to creating the symbolic link. The new `ln` command is:
9+
10+
````
11+
ln -s $PWD/jsonlite.sh /usr/local/bin/jsonlite
12+
````
13+
414
## 0.2.0 - *9/21/2015*
515

616
- `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`.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ JSONlite is a proof of concept, and may not make any sense to actually use. It i
1313
```
1414
git clone https://github.com/nodesocket/jsonlite.git
1515
cd jsonlite
16-
ln -s $PWD/jsonlite /usr/local/bin
16+
ln -s $PWD/jsonlite.sh /usr/local/bin/jsonlite
1717
```
1818

1919
## Requirements
@@ -72,7 +72,7 @@ Are you sure you want to destroy '/jsonlite.data' (y/n)? y
7272
7373
````
7474
➜ jsonlite version
75-
0.2.0
75+
0.3.0
7676
````
7777

7878
## Changelog

jsonlite renamed to jsonlite.sh

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

33
set -e
44

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

0 commit comments

Comments
 (0)