SHA256
8
0
forked from pool/jsoncpp

- Create and install cmake files

- Define libname to make maintenance easier
- Update to 1.5.4

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/jsoncpp?expand=0&rev=16
This commit is contained in:
2015-03-09 08:47:04 +00:00
committed by Git OBS Bridge
parent e073da9ea5
commit 6f12e215f1
4 changed files with 44 additions and 11 deletions

View File

@@ -1,3 +1,33 @@
-------------------------------------------------------------------
Mon Mar 9 08:36:27 UTC 2015 - mpluskal@suse.com
- Create and install cmake files
- Define libname to make maintenance easier
- Update to 1.5.4
* Support embedded 0s in strings (since UTF-8 allows them).
+ If you use c-string methods, or std::string::c_str(), you
can still have problems.
+ Note that this support has a price: keys are now limited to
1 billion characters (2^30).
* Add feature to allow single-quotes in input JSON (since
JavaScript allows them).
* Propagate rarely-used StaticString thru copy-ctor.
* Let JSON_ASSERT throw std::logic_error instead of
std::runtime_error.
* Skip Python tests by default, and run C++ unit-tests only for
changes.
* Ignore cmake-generated files for in-source builds.
* Add tests. Fix other tests.
* Remove unused code (JSON_VALUE_USE_INTERNAL_MAP).
* Add rejectDupKeys feature.
+ Now part of strictMode.
* Fix minor build issues for VisualStudio.
* Fix compile error for VS2013, plus warnings.
* Add operator[] to Builders.
* In Builders, fix ::validate() (which was always returning
true).
* Fix UTF-8 zeroes bugs in previous patch-versions.
-------------------------------------------------------------------
Fri Mar 6 18:24:11 UTC 2015 - mpluskal@suse.com