Skip to content

Commit

Permalink
Preparing for v0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sparkprime committed Dec 21, 2021
1 parent 6335818 commit 34419d2
Show file tree
Hide file tree
Showing 19 changed files with 26 additions and 21 deletions.
5 changes: 4 additions & 1 deletion MANIFEST.in
@@ -1,2 +1,5 @@
include LICENSE include/*.h core/*.cpp core/*.h python/*.c third_party/json/*.hpp third_party/md5/*.cpp third_party/md5/*.h stdlib/std.jsonnet Makefile
include LICENSE include/*.h core/*.cpp core/*.h python/*.c stdlib/std.jsonnet Makefile
include third_party/json/*.hpp
include third_party/md5/*.cpp third_party/md5/*.h
recursive-include third_party/rapidyaml/rapidyaml *.hpp *.cpp *.h
#recursive-include test_suite examples gc_stress benchmarks editors
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Expand Up @@ -15,7 +15,7 @@ add_dependencies(libjsonnet++ jsonnet)
# CMake prepends CMAKE_SHARED_LIBRARY_PREFIX to shared libraries, so without
# this step the output would be |liblibjsonnet|.
set_target_properties(libjsonnet++ PROPERTIES OUTPUT_NAME jsonnet++
VERSION "0.17.0"
VERSION "0.18.0"
SOVERSION "0"
PUBLIC_HEADER "${LIB_HEADER}")
install(TARGETS libjsonnet++
Expand Down
6 changes: 3 additions & 3 deletions doc/ref/stdlib.html
Expand Up @@ -172,7 +172,7 @@ <h4 id="get">
<div class="panel">
<p>
<em>
Available in upcoming release.
Available since version 0.18.0.
</em>
</p>
<p>
Expand Down Expand Up @@ -1452,7 +1452,7 @@ <h4 id="manifestJsonMinified">
<div class="panel">
<p>
<em>
Available in upcoming release.
Available since version 0.18.0.
</em>
</p>
<p>
Expand Down Expand Up @@ -1655,7 +1655,7 @@ <h4 id="manifestTomlEx">
<div class="panel">
<p>
<em>
Available in upcoming release.
Available since version 0.18.0.
</em>
</p>
<p>
Expand Down
2 changes: 1 addition & 1 deletion include/libjsonnet.h
Expand Up @@ -31,7 +31,7 @@ limitations under the License.
*
* If this isn't the sae as jsonnet_version() then you've got a mismatched binary / header.
*/
#define LIB_JSONNET_VERSION "v0.17.0"
#define LIB_JSONNET_VERSION "v0.18.0"

/** Return the version string of the Jsonnet interpreter. Conforms to semantic versioning
* https://semver.org/ If this does not match LIB_JSONNET_VERSION then there is a mismatch between
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -19,6 +19,8 @@
from subprocess import Popen

DIR = os.path.abspath(os.path.dirname(__file__))
# NOTE: If you are editing the array below then you probably also need
# to change MANIFEST.in.
LIB_OBJECTS = [
'core/desugarer.o',
'core/formatter.o',
Expand Down Expand Up @@ -70,7 +72,7 @@ def run(self):
'_jsonnet',
sources=MODULE_SOURCES,
extra_objects=LIB_OBJECTS,
include_dirs = ['include', 'third_party/md5', 'third_party/json'],
include_dirs = ['include'],
language='c++'
)

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/fmt_help.golden.stdout
@@ -1,4 +1,4 @@
Jsonnet reformatter v0.17.0
Jsonnet reformatter v0.18.0

jsonnetfmt {<option>} { <filename> }

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/fmt_help.golden.stdout.golang
@@ -1,4 +1,4 @@
Jsonnet reformatter v0.17.0
Jsonnet reformatter v0.18.0

jsonnetfmt {<option>} { <filename> }

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/fmt_no_args.golden.stderr
@@ -1,6 +1,6 @@
ERROR: must give filename

Jsonnet reformatter v0.17.0
Jsonnet reformatter v0.18.0

jsonnetfmt {<option>} { <filename> }

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/fmt_no_args.golden.stderr.golang
@@ -1,6 +1,6 @@
ERROR: must give filename

Jsonnet reformatter v0.17.0
Jsonnet reformatter v0.18.0

jsonnetfmt {<option>} { <filename> }

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/fmt_version1.golden.stdout
@@ -1 +1 @@
Jsonnet reformatter v0.17.0
Jsonnet reformatter v0.18.0
2 changes: 1 addition & 1 deletion test_cmd/fmt_version2.golden.stdout
@@ -1 +1 @@
Jsonnet reformatter v0.17.0
Jsonnet reformatter v0.18.0
2 changes: 1 addition & 1 deletion test_cmd/help.golden.stdout.cpp
@@ -1,4 +1,4 @@
Jsonnet commandline interpreter v0.17.0
Jsonnet commandline interpreter v0.18.0

jsonnet {<option>} <filename>

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/help.golden.stdout.golang
@@ -1,4 +1,4 @@
Jsonnet commandline interpreter (Go implementation) v0.17.0
Jsonnet commandline interpreter (Go implementation) v0.18.0

jsonnet {<option>} <filename>

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/no_args.golden.stderr.cpp
@@ -1,6 +1,6 @@
ERROR: must give filename

Jsonnet commandline interpreter v0.17.0
Jsonnet commandline interpreter v0.18.0

jsonnet {<option>} <filename>

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/no_args.golden.stderr.golang
@@ -1,6 +1,6 @@
ERROR: must give filename

Jsonnet commandline interpreter (Go implementation) v0.17.0
Jsonnet commandline interpreter (Go implementation) v0.18.0

jsonnet {<option>} <filename>

Expand Down
2 changes: 1 addition & 1 deletion test_cmd/version1.golden.stdout.cpp
@@ -1 +1 @@
Jsonnet commandline interpreter v0.17.0
Jsonnet commandline interpreter v0.18.0
2 changes: 1 addition & 1 deletion test_cmd/version1.golden.stdout.golang
@@ -1 +1 @@
Jsonnet commandline interpreter (Go implementation) v0.17.0
Jsonnet commandline interpreter (Go implementation) v0.18.0
2 changes: 1 addition & 1 deletion test_cmd/version2.golden.stdout.cpp
@@ -1 +1 @@
Jsonnet commandline interpreter v0.17.0
Jsonnet commandline interpreter v0.18.0
2 changes: 1 addition & 1 deletion test_cmd/version2.golden.stdout.golang
@@ -1 +1 @@
Jsonnet commandline interpreter (Go implementation) v0.17.0
Jsonnet commandline interpreter (Go implementation) v0.18.0

0 comments on commit 34419d2

Please sign in to comment.