Skip to content

Commit

Permalink
release: 0.1.33
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Dec 21, 2023
1 parent 25eb963 commit f6d010c
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .profile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ YAMLSCRIPT_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]:-$0}")" && pwd -P)
YS() (
set -e
base=$YAMLSCRIPT_ROOT/ys
jar=yamlscript.cli-0.1.32-SNAPSHOT-standalone.jar
jar=yamlscript.cli-0.1.33-SNAPSHOT-standalone.jar
make --no-print-directory -C "$base" jar
java -jar "$base/target/uberjar/$jar" "$@"
)
Expand Down
12 changes: 12 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@

- version: 0.1.33
date: Thu Dec 21 12:09:16 PM PST 2023
changes:
- core: Fix a bug switching from code mode to data mode

- version: 0.1.32
date: Thu Dec 21 09:01:18 PM PST 2023
changes:
- python: Remove 'compile' from API for now
- python: Rework API
- libyamlscript: Use yamlscript.runtime instead of raw sci

- version: 0.1.31
date: Wed Dec 20 08:51:20 PM PST 2023
changes:
Expand Down
2 changes: 1 addition & 1 deletion Meta
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=meta: 0.0.2

name: YAMLScript
version: 0.1.32
version: 0.1.33
abstract: Program in YAML
homepage: https://yamlscript.org
license: mit
Expand Down
2 changes: 1 addition & 1 deletion common/install
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e -u -o pipefail

VERSION=0.1.32
VERSION=0.1.33

main() (
setup "$@"
Expand Down
2 changes: 1 addition & 1 deletion common/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023 Ingy dot Net

(defproject yamlscript/docker "0.1.32"
(defproject yamlscript/docker "0.1.33"
:description "Program in YAML"
:dependencies
[#__
Expand Down
2 changes: 1 addition & 1 deletion core/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023 Ingy dot Net

(defproject yamlscript/core "0.1.32"
(defproject yamlscript/core "0.1.33"
:description "Program in YAML"

:url "https://github.com/yaml/yamlscript"
Expand Down
4 changes: 2 additions & 2 deletions libyamlscript/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023 Ingy dot Net

(defproject yamlscript/libyamlscript "0.1.32"
(defproject yamlscript/libyamlscript "0.1.33"
:description "Shared Library for YAMLScript"

:url "https://yamlscript.org"
Expand All @@ -20,7 +20,7 @@
[[org.clojure/clojure "1.11.1"]
[org.babashka/sci "0.8.41"]
[org.clojure/data.json "2.4.0"]
[yamlscript/core "0.1.32"]]
[yamlscript/core "0.1.33"]]

:plugins
[[lein-exec "0.3.7"]
Expand Down
2 changes: 1 addition & 1 deletion python/lib/yamlscript/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import ctypes
import json

yamlscript_version = '0.1.32'
yamlscript_version = '0.1.33'

so = 'dylib' if sys.platform == 'darwin' else 'so'
libys_name = 'libyamlscript.' + so + '.' + yamlscript_version
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = '0.1.2'
version = '0.1.3'

from setuptools import setup
import pathlib
Expand Down
2 changes: 1 addition & 1 deletion ys/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
org.babashka/sci {:mvn/version "0.8.41"},
babashka/process {:mvn/version "0.5.21"},
clj-commons/clj-yaml {:mvn/version "1.0.27"},
yamlscript/core {:mvn/version "0.1.32"}},
yamlscript/core {:mvn/version "0.1.33"}},
:aliases
{:lein2deps
{:deps
Expand Down
4 changes: 2 additions & 2 deletions ys/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023 Ingy dot Net

(defproject yamlscript.cli "0.1.32-SNAPSHOT"
(defproject yamlscript.cli "0.1.33-SNAPSHOT"
:description "YAMLScript Command Line Tool"

:url "https://github.com/yaml/yamlscript"
Expand All @@ -24,7 +24,7 @@
[org.babashka/sci "0.8.41"]
[babashka/process "0.5.21"]
[clj-commons/clj-yaml "1.0.27"]
[yamlscript/core "0.1.32"]]
[yamlscript/core "0.1.33"]]

:main ^:skip-aot yamlscript.cli

Expand Down
2 changes: 1 addition & 1 deletion ys/share/ys-0.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -euo pipefail

yamlscript_version=0.1.32
yamlscript_version=0.1.33

main() (
setup "$@"
Expand Down
2 changes: 1 addition & 1 deletion ys/src/yamlscript/cli.clj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
[clojure.string :as str]
[clojure.tools.cli :as cli]))

(def yamlscript-version "0.1.32")
(def yamlscript-version "0.1.33")

(def testing (atom false))

Expand Down

0 comments on commit f6d010c

Please sign in to comment.