Skip to content

Commit e9feed7

Browse files
committed
release: 0.1.21
1 parent 89cb3ba commit e9feed7

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.profile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ YAMLSCRIPT_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]:-$0}")" && pwd -P)
88
YS() (
99
set -e
1010
base=$YAMLSCRIPT_ROOT/ys
11-
jar=yamlscript.cli-0.1.20-SNAPSHOT-standalone.jar
11+
jar=yamlscript.cli-0.1.21-SNAPSHOT-standalone.jar
1212
make --no-print-directory -C "$base" jar
1313
java -jar "$base/target/uberjar/$jar" "$@"
1414
)

Meta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=meta: 0.0.2
22

33
name: YAMLScript
4-
version: 0.1.20
4+
version: 0.1.21
55
abstract: Program in YAML
66
homepage: https://yamlscript.org
77
license: mit

common/install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e -u -o pipefail
44

5-
VERSION=0.1.20
5+
VERSION=0.1.21
66

77
main() (
88
setup "$@"

common/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.20"
4+
(defproject yamlscript/docker "0.1.21"
55
:description "Program in YAML"
66
:dependencies
77
[#__

core/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.20"
4+
(defproject yamlscript/core "0.1.21"
55
:description "Program in YAML"
66

77
:url "https://github.com/yaml/yamlscript"

libyamlscript/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.20"
4+
(defproject yamlscript/libyamlscript "0.1.21"
55
:description "Shared Library for YAMLScript"
66

77
:url "https://yamlscript.org"
@@ -20,7 +20,7 @@
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.20"]]
23+
[yamlscript/core "0.1.21"]]
2424

2525
:plugins
2626
[[lein-exec "0.3.7"]

ys/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.20-SNAPSHOT"
4+
(defproject yamlscript.cli "0.1.21-SNAPSHOT"
55
:description "YAMLScript Command Line Tool"
66

77
:url "https://github.com/yaml/yamlscript"
@@ -23,7 +23,7 @@
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.20"]]
26+
[yamlscript/core "0.1.21"]]
2727

2828
:main ^:skip-aot yamlscript.cli
2929

ys/src/yamlscript/cli.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
(exit 1))
130130

131131
(defn do-version []
132-
(println "YAMLScript 0.1.20"))
132+
(println "YAMLScript 0.1.21"))
133133

134134
(def help-heading
135135
"ys - The YAMLScript (YS) Command Line Tool

0 commit comments

Comments
 (0)