File tree Expand file tree Collapse file tree 10 files changed +13
-13
lines changed
Expand file tree Collapse file tree 10 files changed +13
-13
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.28 -SNAPSHOT-standalone.jar
11+ jar=yamlscript.cli-0.1.29 -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=meta: 0.0.2
22
33name: YAMLScript
4- version: 0.1.28
4+ version: 0.1.29
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.28
5+ VERSION=0.1.29
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.28 "
4+ (defproject yamlscript /docker " 0.1.29 "
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.28 "
4+ (defproject yamlscript /core " 0.1.29 "
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.28 "
4+ (defproject yamlscript /libyamlscript " 0.1.29 "
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.28 " ]]
23+ [yamlscript/core " 0.1.29 " ]]
2424
2525 :plugins
2626 [[lein-exec " 0.3.7" ]
Original file line number Diff line number Diff line change 77 org.babashka/sci {:mvn/version " 0.8.41" },
88 babashka/process {:mvn/version " 0.5.21" },
99 clj-commons/clj-yaml {:mvn/version " 1.0.27" },
10- yamlscript/core {:mvn/version " 0.1.28 " }},
10+ yamlscript/core {:mvn/version " 0.1.29 " }},
1111 :aliases
1212 {:lein2deps
1313 {: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.28 -SNAPSHOT"
4+ (defproject yamlscript.cli " 0.1.29 -SNAPSHOT"
55 :description " YAMLScript Command Line Tool"
66
77 :url " https://github.com/yaml/yamlscript"
2424 [org.babashka/sci " 0.8.41" ]
2525 [babashka/process " 0.5.21" ]
2626 [clj-commons/clj-yaml " 1.0.27" ]
27- [yamlscript/core " 0.1.28 " ]]
27+ [yamlscript/core " 0.1.29 " ]]
2828
2929 :main ^:skip-aot yamlscript.cli
3030
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ write-profile() (
153153 :dependencies
154154 [[org.clojure/clojure "1.11.1"]
155155 [org.babashka/sci "0.8.41"]
156- [yamlscript/core "0.1.28 "]]
156+ [yamlscript/core "0.1.29 "]]
157157
158158 :main ^:skip-aot program
159159
@@ -245,7 +245,7 @@ assert-yamlscript-repo() (
245245 mkdir -p " $repo_path "
246246 (
247247 set -x
248- git clone --branch=0.1.28 --depth=1 --quiet \
248+ git clone --branch=0.1.29 --depth=1 --quiet \
249249 https://github.com/yaml/yamlscript \
250250 " $repo_path "
251251 )
Original file line number Diff line number Diff line change 2121 [clojure.string :as str]
2222 [clojure.tools.cli :as cli]))
2323
24- (def yamlscript-version " 0.1.28 " )
24+ (def yamlscript-version " 0.1.29 " )
2525
2626(def testing (atom false ))
2727
You can’t perform that action at this time.
0 commit comments