aboutsummaryrefslogtreecommitdiff
path: root/lib/libxo/xo_config.h
diff options
context:
space:
mode:
authorPhil Shafer <phil@FreeBSD.org>2019-04-03 21:55:39 +0000
committerPhil Shafer <phil@FreeBSD.org>2019-04-03 21:55:39 +0000
commit406a584d7e80c2617dc035ede0d922215a12141c (patch)
treee09ac674034391ae7156f745debdfda5c8983e0a /lib/libxo/xo_config.h
parent1ecaa3f75e21ab45f5e7849b4d2042c4645659da (diff)
parent8daa90e98c625e7920bce78cf8d29bc133b64f54 (diff)
downloadsrc-406a584d7e80c2617dc035ede0d922215a12141c.tar.gz
src-406a584d7e80c2617dc035ede0d922215a12141c.zip
Import libxo-1.0.2
from 1.0.0: Add "continuation" flag, to allow multiple "xo" invocations in a single line of output (#58) Add --top-wrap to make top-level JSON wrappers Add --{open,close}-{list,instace} options Add xo_xml_leader(), to detect use of some bogus XML tags. It's still bad form, but it's a little safer now Avoid call to xo_write before xo_flush, since the latter calls the former Check return code from xo_flush_h properly (<0) (FreeBSD Bug 236935) For JSON output, avoid newline before a container's close brace (#62) Merge branch 'text_only' of https://github.com/zvr/libxo into zvr-text_only Use XO_USE_INT_RETURN_CODES, not USE_INT_RETURN_CODES add docs for --continuation add docs for --not-first call xo_state_set_flags before values and close containers; add XOIF_MADE_OUTPUT flag to track state; make proper empty JSON objects in xo_finish color_map code has to be #ifdef'd out, since the struct definition correct xo_flush_func_t (doesn't use xo_ssize_t) make depth change for --top-wrap only for JSON fix to handle --top-wrap in "xo" by being more consistent with handling trailing newlines fix to handle text-only version #64 (from zvr) fix xo_buf_has_room for round up to the next XO_BUFSIZ, not just add XO_BUFSIZ to the size (FreeBSD Bug 236937) update docs for new "xo" options update functions to use xo_ssize_t update test cases from 1.0.1: Add EINTEGRITY to .pot files under test/gettext/ (fix from FreeBSD) from 1.0.2: handle failure from xo_vnsprintf; don't add -1 to "rc" PR: 236937, 236935 Submitted by: phil Reported by: Alfonso S. Siciliano <alfix86@gmail.com> MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=345859
Diffstat (limited to 'lib/libxo/xo_config.h')
-rw-r--r--lib/libxo/xo_config.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libxo/xo_config.h b/lib/libxo/xo_config.h
index e7ef55d378c6..c73c5b9b1e07 100644
--- a/lib/libxo/xo_config.h
+++ b/lib/libxo/xo_config.h
@@ -183,16 +183,16 @@
/* #undef LIBXO_TEXT_ONLY */
/* Version number as dotted value */
-#define LIBXO_VERSION "0.9.0"
+#define LIBXO_VERSION "1.0.2"
/* Version number extra information */
#define LIBXO_VERSION_EXTRA ""
/* Version number as a number */
-#define LIBXO_VERSION_NUMBER 9000
+#define LIBXO_VERSION_NUMBER 1000002
/* Version number as string */
-#define LIBXO_VERSION_STRING "9000"
+#define LIBXO_VERSION_STRING "1000002"
/* Enable local wcwidth implementation */
#define LIBXO_WCWIDTH 1
@@ -210,7 +210,7 @@
#define PACKAGE_NAME "libxo"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "libxo 0.9.0"
+#define PACKAGE_STRING "libxo 1.0.2"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "libxo"
@@ -219,7 +219,7 @@
#define PACKAGE_URL ""
/* Define to the version of this package. */
-#define PACKAGE_VERSION "0.9.0"
+#define PACKAGE_VERSION "1.0.2"
/* If using the C implementation of alloca, define if you know the
direction of stack growth for your system; otherwise it will be
@@ -236,7 +236,7 @@
/* #undef USE_INT_RETURN_CODES */
/* Version number of package */
-#define VERSION "0.9.0"
+#define VERSION "1.0.2"
/* Retain hash bucket size */
/* #undef XO_RETAIN_SIZE */