Skip to content

Commit

Permalink
1.0.1 - bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
micha committed Feb 14, 2016
1 parent b9537df commit c72741d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: all clean docs install dist

VERSION = 1.0.0
VERSION = 1.0.1
CFLAGS = -O5
LDFLAGS = -static
PREFIX = /usr/local
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ elb-2 i-b910a256
Linux users can install prebuilt binaries from the release tarball:

```
sudo bash -c "cd /usr/local && wget -O - https://github.com/micha/json-table/releases/download/1.0.0/jt-1.0.0.tar.gz | tar xzvf -"
sudo bash -c "cd /usr/local && wget -O - https://github.com/micha/json-table/releases/download/1.0.1/jt-1.0.1.tar.gz | tar xzvf -"
```

Otherwise, to build from source:

```
git checkout 1.0.0 && make && sudo make install
git checkout 1.0.1 && make && sudo make install
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion jt.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define _GNU_SOURCE
#define JSMN_STRICT
#define JSMN_PARENT_LINKS
#define JT_VERSION "1.0.0"
#define JT_VERSION "1.0.1"

#include <stdarg.h>
#include <stdio.h>
Expand Down

0 comments on commit c72741d

Please sign in to comment.