Skip to content

Commit c72741d

Browse files
committed
1.0.1 - bugfix release
1 parent b9537df commit c72741d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: all clean docs install dist
22

3-
VERSION = 1.0.0
3+
VERSION = 1.0.1
44
CFLAGS = -O5
55
LDFLAGS = -static
66
PREFIX = /usr/local

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ elb-2 i-b910a256
3434
Linux users can install prebuilt binaries from the release tarball:
3535

3636
```
37-
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 -"
37+
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 -"
3838
```
3939

4040
Otherwise, to build from source:
4141

4242
```
43-
git checkout 1.0.0 && make && sudo make install
43+
git checkout 1.0.1 && make && sudo make install
4444
```
4545

4646
## Documentation

jt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define _GNU_SOURCE
22
#define JSMN_STRICT
33
#define JSMN_PARENT_LINKS
4-
#define JT_VERSION "1.0.0"
4+
#define JT_VERSION "1.0.1"
55

66
#include <stdarg.h>
77
#include <stdio.h>

0 commit comments

Comments
 (0)