Skip to content

Commit

Permalink
Add support for string values with embedded '\0' characters (kgabis#137)
Browse files Browse the repository at this point in the history
* Add support for strings with \0 chars

* address feedback

* Increments minor version, adds comments, changes license year

Co-authored-by: Krzysztof Gabis <[email protected]>
  • Loading branch information
reubeno and kgabis authored Apr 16, 2020
1 parent 8d8850d commit 102a446
Show file tree
Hide file tree
Showing 12 changed files with 162 additions and 45 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.DS_Store
test
*.o
testcpp
tests/test_2_serialized.txt
tests/test_2_serialized_pretty.txt
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project(parson C)

include (GNUInstallDirs)

set(PARSON_VERSION 1.0.2)
set(PARSON_VERSION 1.1.0)
add_library(parson parson.c)
target_include_directories(parson PUBLIC $<INSTALL_INTERFACE:include>)

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2012 - 2019 Krzysztof Gabis
Copyright (c) 2012 - 2020 Krzysztof Gabis

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parson",
"version": "1.0.2",
"version": "1.1.0",
"repo": "kgabis/parson",
"description": "Small json parser and reader",
"keywords": [ "json", "parser" ],
Expand Down
Loading

0 comments on commit 102a446

Please sign in to comment.