File tree Expand file tree Collapse file tree 10 files changed +12
-12
lines changed
Expand file tree Collapse file tree 10 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ YAMLSCRIPT_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]:-$0}")" && pwd -P)
88YS () (
99 set -e
1010 base=$YAMLSCRIPT_ROOT /ys
11- jar=yamlscript.cli-0.1.24 -SNAPSHOT-standalone.jar
11+ jar=yamlscript.cli-0.1.25 -SNAPSHOT-standalone.jar
1212 make --no-print-directory -C " $base " jar
1313 java -jar " $base /target/uberjar/$jar " " $@ "
1414)
Original file line number Diff line number Diff line change 11
22- version: 0.1.25
3- date: wip
3+ date: Sun Dec 10 09:44:09 PM PST 2023
44 changes:
55 - core: Improve error messages
66 - core: Fix bugs with auto-declare
Original file line number Diff line number Diff line change 11=meta: 0.0.2
22
33name: YAMLScript
4- version: 0.1.24
4+ version: 0.1.25
55abstract: Program in YAML
66homepage: https://yamlscript.org
77license: mit
Original file line number Diff line number Diff line change 22
33set -e -u -o pipefail
44
5- VERSION=0.1.24
5+ VERSION=0.1.25
66
77main () (
88 setup " $@ "
Original file line number Diff line number Diff line change 11; ; This code is licensed under MIT license (See License for details)
22; ; Copyright 2023 Ingy dot Net
33
4- (defproject yamlscript /docker " 0.1.24 "
4+ (defproject yamlscript /docker " 0.1.25 "
55 :description " Program in YAML"
66 :dependencies
77 [#__
Original file line number Diff line number Diff line change 11; ; This code is licensed under MIT license (See License for details)
22; ; Copyright 2023 Ingy dot Net
33
4- (defproject yamlscript /core " 0.1.24 "
4+ (defproject yamlscript /core " 0.1.25 "
55 :description " Program in YAML"
66
77 :url " https://github.com/yaml/yamlscript"
Original file line number Diff line number Diff line change 11; ; This code is licensed under MIT license (See License for details)
22; ; Copyright 2023 Ingy dot Net
33
4- (defproject yamlscript /libyamlscript " 0.1.24 "
4+ (defproject yamlscript /libyamlscript " 0.1.25 "
55 :description " Shared Library for YAMLScript"
66
77 :url " https://yamlscript.org"
2020 [[org.clojure/clojure " 1.11.1" ]
2121 [org.babashka/sci " 0.8.41" ]
2222 [org.clojure/data.json " 2.4.0" ]
23- [yamlscript/core " 0.1.24 " ]]
23+ [yamlscript/core " 0.1.25 " ]]
2424
2525 :plugins
2626 [[lein-exec " 0.3.7" ]
Original file line number Diff line number Diff line change 66 org.clojure/tools.cli {:mvn/version " 1.0.219" },
77 org.babashka/sci {:mvn/version " 0.8.41" },
88 clj-commons/clj-yaml {:mvn/version " 1.0.27" },
9- yamlscript/core {:mvn/version " 0.1.24 " }},
9+ yamlscript/core {:mvn/version " 0.1.25 " }},
1010 :aliases
1111 {:lein2deps
1212 {:deps
Original file line number Diff line number Diff line change 11; ; This code is licensed under MIT license (See License for details)
22; ; Copyright 2023 Ingy dot Net
33
4- (defproject yamlscript.cli " 0.1.24 -SNAPSHOT"
4+ (defproject yamlscript.cli " 0.1.25 -SNAPSHOT"
55 :description " YAMLScript Command Line Tool"
66
77 :url " https://github.com/yaml/yamlscript"
2323 [org.clojure/tools.cli " 1.0.219" ]
2424 [org.babashka/sci " 0.8.41" ]
2525 [clj-commons/clj-yaml " 1.0.27" ]
26- [yamlscript/core " 0.1.24 " ]]
26+ [yamlscript/core " 0.1.25 " ]]
2727
2828 :main ^:skip-aot yamlscript.cli
2929
Original file line number Diff line number Diff line change 129129 (exit 1 ))
130130
131131(defn do-version []
132- (println " YAMLScript 0.1.24 " ))
132+ (println " YAMLScript 0.1.25 " ))
133133
134134(def help-heading
135135 " ys - The YAMLScript (YS) Command Line Tool
You can’t perform that action at this time.
0 commit comments