Skip to content

Commit dd3cde2

Browse files
committed
release: 0.1.29
1 parent 9d0c2da commit dd3cde2

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
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.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
)

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.28
4+
version: 0.1.29
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.28
5+
VERSION=0.1.29
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.28"
4+
(defproject yamlscript/docker "0.1.29"
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.28"
4+
(defproject yamlscript/core "0.1.29"
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.28"
4+
(defproject yamlscript/libyamlscript "0.1.29"
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.28"]]
23+
[yamlscript/core "0.1.29"]]
2424

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

ys/deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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

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.28-SNAPSHOT"
4+
(defproject yamlscript.cli "0.1.29-SNAPSHOT"
55
:description "YAMLScript Command Line Tool"
66

77
:url "https://github.com/yaml/yamlscript"
@@ -24,7 +24,7 @@
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

ys/share/ys-0.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
)

ys/src/yamlscript/cli.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
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

0 commit comments

Comments
 (0)