From 0a15204876feec2f810a281e24cc346848984bfe Mon Sep 17 00:00:00 2001 From: Dave Cunningham Date: Tue, 27 Oct 2015 14:08:00 -0400 Subject: [PATCH] Fix file not included in Python build --- include/libjsonnet.h | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/include/libjsonnet.h b/include/libjsonnet.h index 35c7a1d15..a0d15a492 100644 --- a/include/libjsonnet.h +++ b/include/libjsonnet.h @@ -23,7 +23,7 @@ limitations under the License. */ -#define LIB_JSONNET_VERSION "v0.8.4" +#define LIB_JSONNET_VERSION "v0.8.5" /** Return the version string of the Jsonnet interpreter. Conforms to semantic versioning diff --git a/setup.py b/setup.py index fec50c690..1ac03806a 100644 --- a/setup.py +++ b/setup.py @@ -20,6 +20,7 @@ DIR = os.path.abspath(os.path.dirname(__file__)) LIB_OBJECTS = [ + 'core/desugarer.o', 'core/libjsonnet.o', 'core/lexer.o', 'core/parser.o',