Skip to content

Commit 124e392

Browse files
committed
release: 0.1.25
1 parent 8a627c3 commit 124e392

File tree

10 files changed

+12
-12
lines changed

10 files changed

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

Changes

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

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.24
4+
version: 0.1.25
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.24
5+
VERSION=0.1.25
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.24"
4+
(defproject yamlscript/docker "0.1.25"
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.24"
4+
(defproject yamlscript/core "0.1.25"
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.24"
4+
(defproject yamlscript/libyamlscript "0.1.25"
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.24"]]
23+
[yamlscript/core "0.1.25"]]
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
@@ -6,7 +6,7 @@
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

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.24-SNAPSHOT"
4+
(defproject yamlscript.cli "0.1.25-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.24"]]
26+
[yamlscript/core "0.1.25"]]
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.24"))
132+
(println "YAMLScript 0.1.25"))
133133

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

0 commit comments

Comments
 (0)