Skip to content

Commit

Permalink
Set version to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Dec 10, 2020
1 parent 52f4c17 commit e49f6d9
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dev/VisualStudio/lwjson_opts.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <tilen@majerle.eu>
* Version: v1.0.2
* Version: v1.1.0
*/
#ifndef LWJSON_HDR_OPTS_H
#define LWJSON_HDR_OPTS_H
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
author = 'Tilen MAJERLE'

# The full version, including alpha/beta/rc tags
version = 'v1.0.2'
version = 'v1.1.0'

# Try to get branch at which this is running
# and try to determine which version to display in sphinx
Expand Down
2 changes: 1 addition & 1 deletion lwjson/src/include/lwjson/lwjson.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <tilen@majerle.eu>
* Version: v1.0.2
* Version: v1.1.0
*/
#ifndef LWJSON_HDR_H
#define LWJSON_HDR_H
Expand Down
2 changes: 1 addition & 1 deletion lwjson/src/include/lwjson/lwjson_opt.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <tilen@majerle.eu>
* Version: v1.0.2
* Version: v1.1.0
*/
#ifndef LWJSON_HDR_OPT_H
#define LWJSON_HDR_OPT_H
Expand Down
2 changes: 1 addition & 1 deletion lwjson/src/include/lwjson/lwjson_opts_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <tilen@majerle.eu>
* Version: v1.0.2
* Version: v1.1.0
*/
#ifndef LWJSON_HDR_OPTS_H
#define LWJSON_HDR_OPTS_H
Expand Down
4 changes: 2 additions & 2 deletions lwjson/src/lwjson/lwjson.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <tilen@majerle.eu>
* Version: v1.0.2
* Version: v1.1.0
*/
#include <string.h>
#include "lwjson/lwjson.h"
Expand Down Expand Up @@ -334,7 +334,7 @@ prv_find(const lwjson_token_t* parent, const char* path) {
if (parent->type != LWJSON_TYPE_ARRAY) {
return NULL;
}

/* Check if index requested */
if (segment_len > 1) {
const lwjson_token_t *t;
Expand Down
2 changes: 1 addition & 1 deletion lwjson/src/lwjson/lwjson_debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* This file is part of LwJSON - Lightweight JSON format parser.
*
* Author: Tilen MAJERLE <tilen@majerle.eu>
* Version: v1.0.2
* Version: v1.1.0
*/
#include <string.h>
#include <stdio.h>
Expand Down

0 comments on commit e49f6d9

Please sign in to comment.