Skip to content

Commit

Permalink
release: 0.1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Dec 7, 2023
1 parent 89cb3ba commit e9feed7
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .profile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ YAMLSCRIPT_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]:-$0}")" && pwd -P)
YS() (
set -e
base=$YAMLSCRIPT_ROOT/ys
jar=yamlscript.cli-0.1.20-SNAPSHOT-standalone.jar
jar=yamlscript.cli-0.1.21-SNAPSHOT-standalone.jar
make --no-print-directory -C "$base" jar
java -jar "$base/target/uberjar/$jar" "$@"
)
Expand Down
2 changes: 1 addition & 1 deletion Meta
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=meta: 0.0.2

name: YAMLScript
version: 0.1.20
version: 0.1.21
abstract: Program in YAML
homepage: https://yamlscript.org
license: mit
Expand Down
2 changes: 1 addition & 1 deletion common/install
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e -u -o pipefail

VERSION=0.1.20
VERSION=0.1.21

main() (
setup "$@"
Expand Down
2 changes: 1 addition & 1 deletion common/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023 Ingy dot Net

(defproject yamlscript/docker "0.1.20"
(defproject yamlscript/docker "0.1.21"
:description "Program in YAML"
:dependencies
[#__
Expand Down
2 changes: 1 addition & 1 deletion core/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023 Ingy dot Net

(defproject yamlscript/core "0.1.20"
(defproject yamlscript/core "0.1.21"
:description "Program in YAML"

:url "https://github.com/yaml/yamlscript"
Expand Down
4 changes: 2 additions & 2 deletions libyamlscript/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023 Ingy dot Net

(defproject yamlscript/libyamlscript "0.1.20"
(defproject yamlscript/libyamlscript "0.1.21"
:description "Shared Library for YAMLScript"

:url "https://yamlscript.org"
Expand All @@ -20,7 +20,7 @@
[[org.clojure/clojure "1.11.1"]
[org.babashka/sci "0.8.41"]
[org.clojure/data.json "2.4.0"]
[yamlscript/core "0.1.20"]]
[yamlscript/core "0.1.21"]]

:plugins
[[lein-exec "0.3.7"]
Expand Down
4 changes: 2 additions & 2 deletions ys/project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; This code is licensed under MIT license (See License for details)
;; Copyright 2023 Ingy dot Net

(defproject yamlscript.cli "0.1.20-SNAPSHOT"
(defproject yamlscript.cli "0.1.21-SNAPSHOT"
:description "YAMLScript Command Line Tool"

:url "https://github.com/yaml/yamlscript"
Expand All @@ -23,7 +23,7 @@
[org.clojure/tools.cli "1.0.219"]
[org.babashka/sci "0.8.41"]
[clj-commons/clj-yaml "1.0.27"]
[yamlscript/core "0.1.20"]]
[yamlscript/core "0.1.21"]]

:main ^:skip-aot yamlscript.cli

Expand Down
2 changes: 1 addition & 1 deletion ys/src/yamlscript/cli.clj
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
(exit 1))

(defn do-version []
(println "YAMLScript 0.1.20"))
(println "YAMLScript 0.1.21"))

(def help-heading
"ys - The YAMLScript (YS) Command Line Tool
Expand Down

0 comments on commit e9feed7

Please sign in to comment.