From 17c21545d7bd7f1a77274ad28b78be0e3614b6fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingy=20d=C3=B6t=20Net?= Date: Sat, 6 Jul 2024 12:12:06 -0700 Subject: [PATCH] release: 0.1.65 --- .profile | 2 +- Changes | 6 ++++++ Meta | 4 ++-- ReadMe.md | 2 +- clojure/deps.edn | 2 +- clojure/project.clj | 4 ++-- common/install.mk | 2 +- common/project.clj | 2 +- common/release.md | 2 +- common/vars.mk | 2 +- core/project.clj | 2 +- core/src/yamlscript/runtime.clj | 2 +- doc/ys.md | 2 +- go/ReadMe.md | 4 ++-- go/doc/readme.md | 4 ++-- go/yamlscript.go | 2 +- java/Makefile | 2 +- java/pom.xml | 2 +- .../java/org/yamlscript/yamlscript/YAMLScript.java | 2 +- libyamlscript/deps.edn | 2 +- libyamlscript/project.clj | 4 ++-- nodejs/lib/yamlscript/index.js | 2 +- nodejs/package.json | 2 +- perl-alien/Changes | 6 ++++++ perl-alien/Meta | 2 +- perl-alien/alienfile | 2 +- perl-alien/lib/Alien/YAMLScript.pm | 2 +- perl/Changes | 6 ++++++ perl/Meta | 4 ++-- perl/lib/YAMLScript.pm | 2 +- python/lib/yamlscript/__init__.py | 4 ++-- python/setup.py | 2 +- raku/META6.json | 2 +- raku/lib/YAMLScript.rakumod | 2 +- ruby/ChangeLog.md | 4 ++++ ruby/lib/yamlscript.rb | 2 +- ruby/lib/yamlscript/version.rb | 2 +- rust/Cargo.lock | 2 +- rust/Cargo.toml | 2 +- rust/src/lib.rs | 2 +- www/src/index.md | 10 +++++----- www/src/install | 2 +- www/src/posts/advent-2023/dec-05.md | 2 +- www/src/posts/advent-2023/dec-07.md | 4 ++-- ys/deps.edn | 2 +- ys/project.clj | 4 ++-- ys/share/ys-0.bash | 2 +- ys/src/yamlscript/cli.clj | 2 +- ys/test/cli-usage.t | 2 +- 49 files changed, 80 insertions(+), 58 deletions(-) diff --git a/.profile b/.profile index 16f1a3501..460e24424 100644 --- a/.profile +++ b/.profile @@ -10,7 +10,7 @@ ys-local() { YS() ( set -e base=$YAMLSCRIPT_ROOT/ys - libyamlscript_version=0.1.64 + libyamlscript_version=0.1.65 jar=yamlscript.cli-$libyamlscript_version-SNAPSHOT-standalone.jar make --no-print-directory -C "$base" jar java -jar "$base/target/uberjar/$jar" "$@" diff --git a/Changes b/Changes index c4089b2dc..a3de58497 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,9 @@ +- version: 0.1.65 + date: Sat 06 Jul 2024 12:05:01 PM PDT + changes: + - go: Add the Go binding library for libyamlscript + - doc: Update the binding ReadMe files + - build: Fix unicode bug in 0.1.64 - version: 0.1.64 date: Thu 04 Jul 2024 12:36:04 PM PDT diff --git a/Meta b/Meta index 3798e5e73..6dc562f03 100644 --- a/Meta +++ b/Meta @@ -1,7 +1,7 @@ -=meta: 0.0.2 +=meta: 0.1.65 name: YAMLScript -version: 0.1.64 +version: 0.1.65 abstract: Program in YAML homepage: https://yamlscript.org license: mit diff --git a/ReadMe.md b/ReadMe.md index 60edae2c7..8f9be4baa 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -229,7 +229,7 @@ Make sure `~/.local/bin` is in your `PATH` environment variable. You can use the following environment variables to control the installation: * `PREFIX=...` - The directory to install to. Default: `~/.local` -* `VERSION=...` - The YAMLScript version to install. Default: `0.1.64` +* `VERSION=...` - The YAMLScript version to install. Default: `0.1.65` * `BIN=1` - Only install the `PREFIX/bin/ys` command line tool. * `LIB=1` - Only install the `PREFIX/lib/libyamlscript` shared library. * `DEBUG=1` - Print the Bash commands that are being run. diff --git a/clojure/deps.edn b/clojure/deps.edn index bae896f1a..7b1b353b1 100644 --- a/clojure/deps.edn +++ b/clojure/deps.edn @@ -4,4 +4,4 @@ org.clojure/data.json {:mvn/version "2.4.0"}, org.json/json {:mvn/version "20240205"}, net.java.dev.jna/jna {:mvn/version "5.14.0"}, - org.yamlscript/yamlscript {:mvn/version "0.1.64"}}} + org.yamlscript/yamlscript {:mvn/version "0.1.65"}}} diff --git a/clojure/project.clj b/clojure/project.clj index 54ab7b13b..d34252739 100644 --- a/clojure/project.clj +++ b/clojure/project.clj @@ -1,7 +1,7 @@ ;; This code is licensed under MIT license (See License for details) ;; Copyright 2023-2024 Ingy dot Net -(defproject org.yamlscript/clj-yamlscript "0.1.64" +(defproject org.yamlscript/clj-yamlscript "0.1.65" :description "YAMLScript is a functional programming language whose syntax is encoded in YAML." @@ -23,7 +23,7 @@ [org.clojure/data.json "2.4.0"] [org.json/json "20240205"] [net.java.dev.jna/jna "5.14.0"] - [org.yamlscript/yamlscript "0.1.64"]] + [org.yamlscript/yamlscript "0.1.65"]] :deploy-repositories [["releases" diff --git a/common/install.mk b/common/install.mk index ed036cf3c..e8986a4fb 100644 --- a/common/install.mk +++ b/common/install.mk @@ -3,7 +3,7 @@ SHELL := bash ROOT := $(shell \ cd '$(abspath $(dir $(lastword $(MAKEFILE_LIST))))' && pwd -P) -YAMLSCRIPT_VERSION := 0.1.64 +YAMLSCRIPT_VERSION := 0.1.65 YS := $(wildcard ys) LIBYAMLSCRIPT := $(firstword $(wildcard libyamlscript.*)) diff --git a/common/project.clj b/common/project.clj index aede9b923..00fd08bb5 100644 --- a/common/project.clj +++ b/common/project.clj @@ -1,7 +1,7 @@ ;; This code is licensed under MIT license (See License for details) ;; Copyright 2023-2024 Ingy dot Net -(defproject yamlscript/docker "0.1.64" +(defproject yamlscript/docker "0.1.65" :description "Program in YAML" :dependencies [#__ diff --git a/common/release.md b/common/release.md index ca4063850..1b0c9a32d 100644 --- a/common/release.md +++ b/common/release.md @@ -14,5 +14,5 @@ $ curl https://yamlscript.org/install | bash See [Installing YAMLScript](https://github.com/yaml/yamlscript/wiki/Installing-YAMLScript) for more detailed information. -## Changes in YAMLScript version 0.1.64 +## Changes in YAMLScript version 0.1.65 diff --git a/common/vars.mk b/common/vars.mk index 8e6e9461f..3afe985fb 100644 --- a/common/vars.mk +++ b/common/vars.mk @@ -8,7 +8,7 @@ endif BUILD_BIN := $(YS_TMP)/bin -BUILD_BIN_YS_VERSION := 0.1.63 +BUILD_BIN_YS_VERSION := 0.1.65 BUILD_BIN_YS := $(BUILD_BIN)/ys-$(BUILD_BIN_YS_VERSION) diff --git a/core/project.clj b/core/project.clj index 1c79a5a70..b6b5e731a 100644 --- a/core/project.clj +++ b/core/project.clj @@ -1,7 +1,7 @@ ;; This code is licensed under MIT license (See License for details) ;; Copyright 2023-2024 Ingy dot Net -(defproject yamlscript/core "0.1.64" +(defproject yamlscript/core "0.1.65" :description "Program in YAML" :url "https://github.com/yaml/yamlscript" diff --git a/core/src/yamlscript/runtime.clj b/core/src/yamlscript/runtime.clj index 0adb3121f..26163d891 100644 --- a/core/src/yamlscript/runtime.clj +++ b/core/src/yamlscript/runtime.clj @@ -31,7 +31,7 @@ :refer [abspath get-yspath]])) -(def ys-version "0.1.64") +(def ys-version "0.1.65") (def ARGS (sci/new-dynamic-var 'ARGS)) (def ARGV (sci/new-dynamic-var 'ARGV)) diff --git a/doc/ys.md b/doc/ys.md index 4a1f138b7..b89746ed4 100644 --- a/doc/ys.md +++ b/doc/ys.md @@ -11,7 +11,7 @@ as JSON. ```text $ ys --help -ys - The YAMLScript (YS) Command Line Tool - v0.1.64 +ys - The YAMLScript (YS) Command Line Tool - v0.1.65 Usage: ys [] [] diff --git a/go/ReadMe.md b/go/ReadMe.md index 6fe2b4b45..ee0fd30c8 100644 --- a/go/ReadMe.md +++ b/go/ReadMe.md @@ -61,7 +61,7 @@ $ ys --compile file.ys In `go.mod`: ```go -require github.com/yaml/yamlscript-go v0.1.64 +require github.com/yaml/yamlscript-go v0.1.65 ``` File `prog.go`: @@ -91,7 +91,7 @@ func main() { You can install this module like any other Go module: ```bash -$ go get github.com/yaml/yamlscript-go@v0.1.64 +$ go get github.com/yaml/yamlscript-go@v0.1.65 ``` but you will need to have a system install of `libyamlscript.so`. diff --git a/go/doc/readme.md b/go/doc/readme.md index 23801dfd4..50ec62306 100644 --- a/go/doc/readme.md +++ b/go/doc/readme.md @@ -3,7 +3,7 @@ In `go.mod`: ```go -require github.com/yaml/yamlscript-go v0.1.64 +require github.com/yaml/yamlscript-go v0.1.65 ``` File `prog.go`: @@ -33,7 +33,7 @@ func main() { You can install this module like any other Go module: ```bash -$ go get github.com/yaml/yamlscript-go@v0.1.64 +$ go get github.com/yaml/yamlscript-go@v0.1.65 ``` but you will need to have a system install of `libyamlscript.so`. diff --git a/go/yamlscript.go b/go/yamlscript.go index 065d4ef99..be5e629d6 100644 --- a/go/yamlscript.go +++ b/go/yamlscript.go @@ -1,6 +1,6 @@ package yamlscript -// #cgo LDFLAGS: -lyamlscript.0.1.64 +// #cgo LDFLAGS: -lyamlscript.0.1.65 // #include // #include import "C" diff --git a/java/Makefile b/java/Makefile index 4710f5f8a..2dc135cdb 100644 --- a/java/Makefile +++ b/java/Makefile @@ -2,7 +2,7 @@ include ../common/base.mk include $(COMMON)/binding.mk include $(COMMON)/java.mk -YAMLSCRIPT_JAVA_JAR := target/yamlscript-0.1.64.jar +YAMLSCRIPT_JAVA_JAR := target/yamlscript-0.1.65.jar #------------------------------------------------------------------------------ diff --git a/java/pom.xml b/java/pom.xml index a3798eb66..37dad3003 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -12,7 +12,7 @@ yamlscript - 0.1.64 + 0.1.65 yamlscript diff --git a/java/src/main/java/org/yamlscript/yamlscript/YAMLScript.java b/java/src/main/java/org/yamlscript/yamlscript/YAMLScript.java index bd32410ff..d25a396b7 100644 --- a/java/src/main/java/org/yamlscript/yamlscript/YAMLScript.java +++ b/java/src/main/java/org/yamlscript/yamlscript/YAMLScript.java @@ -13,7 +13,7 @@ */ public class YAMLScript { - public static String YAMLSCRIPT_VERSION = "0.1.64"; + public static String YAMLSCRIPT_VERSION = "0.1.65"; public static Object load(String ysCode) { diff --git a/libyamlscript/deps.edn b/libyamlscript/deps.edn index dfd44ecb0..282ca0ad1 100644 --- a/libyamlscript/deps.edn +++ b/libyamlscript/deps.edn @@ -3,7 +3,7 @@ {org.clojure/clojure {:mvn/version "1.11.1"}, org.babashka/sci {:mvn/version "0.8.40"}, org.clojure/data.json {:mvn/version "2.4.0"}, - yamlscript/compiler {:mvn/version "0.1.64"}}, + yamlscript/compiler {:mvn/version "0.1.65"}}, :aliases {:lein2deps {:deps diff --git a/libyamlscript/project.clj b/libyamlscript/project.clj index 28b567e7e..e27d623a8 100644 --- a/libyamlscript/project.clj +++ b/libyamlscript/project.clj @@ -1,7 +1,7 @@ ;; This code is licensed under MIT license (See License for details) ;; Copyright 2023-2024 Ingy dot Net -(defproject yamlscript/libyamlscript "0.1.64" +(defproject yamlscript/libyamlscript "0.1.65" :description "Shared Library for YAMLScript" :url "https://yamlscript.org" @@ -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.64"]] + [yamlscript/core "0.1.65"]] :plugins [[lein-exec "0.3.7"] diff --git a/nodejs/lib/yamlscript/index.js b/nodejs/lib/yamlscript/index.js index 54ae4e117..ce64edc8d 100644 --- a/nodejs/lib/yamlscript/index.js +++ b/nodejs/lib/yamlscript/index.js @@ -1,4 +1,4 @@ -const yamlscriptVersion = '0.1.64'; +const yamlscriptVersion = '0.1.65'; const ffi = require('ffi-napi'); const ref = require('ref-napi'); diff --git a/nodejs/package.json b/nodejs/package.json index 89e5258fd..91c645ed8 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "@yaml/yamlscript", - "version": "0.1.64", + "version": "0.1.65", "description": "Program in YAML", "main": "lib/yamlscript/index.js", "author": "Ingy döt Net", diff --git a/perl-alien/Changes b/perl-alien/Changes index cd5f467de..38e28de61 100644 --- a/perl-alien/Changes +++ b/perl-alien/Changes @@ -1,4 +1,10 @@ +--- +version: 0.1.65 +date: Sat 06 Jul 2024 12:05:01 PM PDT +changes: +- libyamlscript 0.1.65 + --- version: 0.1.64 date: Thu 04 Jul 2024 12:36:04 PM PDT diff --git a/perl-alien/Meta b/perl-alien/Meta index daf76d8ad..55db8700a 100644 --- a/perl-alien/Meta +++ b/perl-alien/Meta @@ -3,7 +3,7 @@ base: ../Meta name: Alien-YAMLScript -version: 0.1.64 +version: 0.1.65 language: perl diff --git a/perl-alien/alienfile b/perl-alien/alienfile index d2d421c99..011c3db5d 100644 --- a/perl-alien/alienfile +++ b/perl-alien/alienfile @@ -1,6 +1,6 @@ use alienfile; -my $libyamlscript_version = '0.1.64'; +my $libyamlscript_version = '0.1.65'; # Always use a share install # We cannot use a system install, because we need to know exactly diff --git a/perl-alien/lib/Alien/YAMLScript.pm b/perl-alien/lib/Alien/YAMLScript.pm index b79963508..134032565 100644 --- a/perl-alien/lib/Alien/YAMLScript.pm +++ b/perl-alien/lib/Alien/YAMLScript.pm @@ -3,7 +3,7 @@ use warnings; package Alien::YAMLScript; -our $VERSION = '0.1.64'; +our $VERSION = '0.1.65'; use parent 'Alien::Base'; diff --git a/perl/Changes b/perl/Changes index 68331ef9b..a55b99f21 100644 --- a/perl/Changes +++ b/perl/Changes @@ -1,4 +1,10 @@ +--- +version: 0.1.65 +date: Sat 06 Jul 2024 12:05:01 PM PDT +changes: +- libyamlscript 0.1.65 + --- version: 0.1.64 date: Thu 04 Jul 2024 12:36:04 PM PDT diff --git a/perl/Meta b/perl/Meta index 8565ff455..80f390ccb 100644 --- a/perl/Meta +++ b/perl/Meta @@ -3,7 +3,7 @@ base: ../Meta name: YAMLScript -version: 0.1.64 +version: 0.1.65 language: perl @@ -12,7 +12,7 @@ author: requires: perl: 5.16.0 - Alien::YAMLScript: 0.1.64 + Alien::YAMLScript: 0.1.65 FFI::CheckLib: 0.31 FFI::Platypus: 2.08 Cpanel::JSON::XS: 4.37 diff --git a/perl/lib/YAMLScript.pm b/perl/lib/YAMLScript.pm index 30fbf52d5..9741160cb 100644 --- a/perl/lib/YAMLScript.pm +++ b/perl/lib/YAMLScript.pm @@ -10,7 +10,7 @@ use FFI::CheckLib (); use FFI::Platypus; use Cpanel::JSON::XS (); -our $VERSION = '0.1.64'; +our $VERSION = '0.1.65'; our $libyamlscript_version = $VERSION; diff --git a/python/lib/yamlscript/__init__.py b/python/lib/yamlscript/__init__.py index 5c0e0addd..89bb84ce4 100644 --- a/python/lib/yamlscript/__init__.py +++ b/python/lib/yamlscript/__init__.py @@ -16,7 +16,7 @@ # This value is automatically updated by 'make bump'. # The version number is used to find the correct shared library file. # We currently only support binding to an exact version of libyamlscript. -yamlscript_version = '0.1.64' +yamlscript_version = '0.1.65' import os, sys import ctypes @@ -40,7 +40,7 @@ def find_libyamlscript_path(): "Unsupported platform '%s' for yamlscript." % sys.platform) # We currently bind to an exact version of libyamlscript. - # eg 'libyamlscript.so.0.1.64' + # eg 'libyamlscript.so.0.1.65' libyamlscript_name = \ "libyamlscript.%s.%s" % (so, yamlscript_version) diff --git a/python/setup.py b/python/setup.py index 2302a7899..f6e04d90f 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,4 +1,4 @@ -version = '0.1.64' +version = '0.1.65' from setuptools import setup import pathlib diff --git a/raku/META6.json b/raku/META6.json index 8285cd7d0..db5025a76 100644 --- a/raku/META6.json +++ b/raku/META6.json @@ -1,6 +1,6 @@ { "api": 0 , "name": "YAMLScript" -, "version": "0.1.64" +, "version": "0.1.65" , "description": "Program in YAML" , "auth": "zef:ingy" , "provides": diff --git a/raku/lib/YAMLScript.rakumod b/raku/lib/YAMLScript.rakumod index ab60f6acb..ed5910258 100644 --- a/raku/lib/YAMLScript.rakumod +++ b/raku/lib/YAMLScript.rakumod @@ -6,7 +6,7 @@ unit class YAMLScript; use LibraryMake; use NativeCall; -constant YAMLSCRIPT_VERSION = v0.1.64; +constant YAMLSCRIPT_VERSION = v0.1.65; sub resolve-lib { state $ = do { diff --git a/ruby/ChangeLog.md b/ruby/ChangeLog.md index 9ea25a964..9ea5f70d3 100644 --- a/ruby/ChangeLog.md +++ b/ruby/ChangeLog.md @@ -1,3 +1,7 @@ +## [0.1.65] - 2024-07-06 + +- libyamlscript 0.1.65 + ## [0.1.64] - 2024-07-04 - libyamlscript 0.1.64 diff --git a/ruby/lib/yamlscript.rb b/ruby/lib/yamlscript.rb index c3ca058ae..4f6aef4a9 100644 --- a/ruby/lib/yamlscript.rb +++ b/ruby/lib/yamlscript.rb @@ -16,7 +16,7 @@ class YAMLScript # This value is automatically updated by 'make bump'. # The version number is used to find the correct shared library file. # We currently only support binding to an exact version of libyamlscript. - YAMLSCRIPT_VERSION = '0.1.64' + YAMLSCRIPT_VERSION = '0.1.65' # A low-level interface to the native library module LibYAMLScript diff --git a/ruby/lib/yamlscript/version.rb b/ruby/lib/yamlscript/version.rb index 4fc1ce557..665155d36 100644 --- a/ruby/lib/yamlscript/version.rb +++ b/ruby/lib/yamlscript/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class YAMLScript - VERSION = "0.1.64" + VERSION = "0.1.65" end diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 0da542872..a775cf304 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -174,7 +174,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "yamlscript" -version = "0.1.64" +version = "0.1.65" dependencies = [ "dlopen", "libc", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 7e2ff33c1..0e4755a82 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yamlscript" -version = "0.1.64" +version = "0.1.65" edition = "2021" description = "Program in YAML" license = "MIT" diff --git a/rust/src/lib.rs b/rust/src/lib.rs index ac99bd825..f53e5b2a1 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -66,7 +66,7 @@ use crate::error::LibYAMLScriptError; const LIBYAMLSCRIPT_BASENAME: &str = "libyamlscript"; /// The version of the yamlscript library this bindings works with. -const LIBYAMLSCRIPT_VERSION: &str = "0.1.64"; +const LIBYAMLSCRIPT_VERSION: &str = "0.1.65"; /// The extension of the YAMLScript library. On Linux, it's a `.so` file. #[cfg(target_os = "linux")] diff --git a/www/src/index.md b/www/src/index.md index d0dfbadeb..2fe84cdac 100644 --- a/www/src/index.md +++ b/www/src/index.md @@ -266,7 +266,7 @@ Test your new `ys` installation by running: ```text $ ys --help -ys - The YAMLScript (YS) Command Line Tool - v0.1.64 +ys - The YAMLScript (YS) Command Line Tool - v0.1.65 Usage: ys [] [] @@ -311,7 +311,7 @@ or: ```text $ ys --version -YAMLScript 0.1.64 +YAMLScript 0.1.65 ``` @@ -341,9 +341,9 @@ For Python you would do: ```bash $ pip install yamlscript -Successfully installed yamlscript-0.1.64 -$ curl https://yamlscript.org/install | VERSION=0.1.64 install -Installed ~/.local/lib/libyamlscript.so - version 0.1.64 +Successfully installed yamlscript-0.1.65 +$ curl https://yamlscript.org/install | VERSION=0.1.65 install +Installed ~/.local/lib/libyamlscript.so - version 0.1.65 ``` For some other language, use that language's library installer. diff --git a/www/src/install b/www/src/install index 2d8ae0239..78a4e4c34 100644 --- a/www/src/install +++ b/www/src/install @@ -9,7 +9,7 @@ set -e -u -o pipefail -LIBYAMLSCRIPT_VERSION=0.1.64 +LIBYAMLSCRIPT_VERSION=0.1.65 VERSION=${VERSION:-$LIBYAMLSCRIPT_VERSION} export VERSION diff --git a/www/src/posts/advent-2023/dec-05.md b/www/src/posts/advent-2023/dec-05.md index ec1a10ff6..fdbd47a56 100644 --- a/www/src/posts/advent-2023/dec-05.md +++ b/www/src/posts/advent-2023/dec-05.md @@ -108,7 +108,7 @@ $ ys --help It should display: ```text -ys - The YAMLScript (YS) Command Line Tool - v0.1.64 +ys - The YAMLScript (YS) Command Line Tool - v0.1.65 Usage: ys [] [] diff --git a/www/src/posts/advent-2023/dec-07.md b/www/src/posts/advent-2023/dec-07.md index fb6d4523b..44eec8de3 100644 --- a/www/src/posts/advent-2023/dec-07.md +++ b/www/src/posts/advent-2023/dec-07.md @@ -25,7 +25,7 @@ Reminder, here's the quick way to install the latest version: $ curl https://yamlscript.org/install | PREFIX=~/.yamlscript bash $ export PATH=$HOME/.yamlscript/bin:$PATH $ ys --version -YAMLScript v0.1.64 +YAMLScript v0.1.65 ``` The best first command to run is `ys --help`: @@ -33,7 +33,7 @@ The best first command to run is `ys --help`: ```bash $ ys --help -ys - The YAMLScript (YS) Command Line Tool - v0.1.64 +ys - The YAMLScript (YS) Command Line Tool - v0.1.65 Usage: ys [] [] diff --git a/ys/deps.edn b/ys/deps.edn index 0d8e605aa..c1b87814f 100644 --- a/ys/deps.edn +++ b/ys/deps.edn @@ -7,7 +7,7 @@ org.babashka/sci {:mvn/version "0.8.41"}, babashka/process {:mvn/version "0.5.21"}, clj-commons/clj-yaml {:mvn/version "1.0.27"}, - yamlscript/core {:mvn/version "0.1.64"}}, + yamlscript/core {:mvn/version "0.1.65"}}, :aliases {:lein2deps {:deps diff --git a/ys/project.clj b/ys/project.clj index a7dcd653f..a339617d4 100644 --- a/ys/project.clj +++ b/ys/project.clj @@ -1,7 +1,7 @@ ;; This code is licensed under MIT license (See License for details) ;; Copyright 2023-2024 Ingy dot Net -(defproject yamlscript.cli "0.1.64-SNAPSHOT" +(defproject yamlscript.cli "0.1.65-SNAPSHOT" :description "YAMLScript Command Line Tool" :url "https://github.com/yaml/yamlscript" @@ -24,7 +24,7 @@ [org.babashka/sci "0.8.41"] [babashka/process "0.5.21"] [clj-commons/clj-yaml "1.0.27"] - [yamlscript/core "0.1.64"]] + [yamlscript/core "0.1.65"]] :main ^:skip-aot yamlscript.cli diff --git a/ys/share/ys-0.bash b/ys/share/ys-0.bash index 7906c033b..6293fc723 100755 --- a/ys/share/ys-0.bash +++ b/ys/share/ys-0.bash @@ -4,7 +4,7 @@ set -euo pipefail [[ ${YS_SH_DEBUG-} ]] && set -x -yamlscript_version=0.1.64 +yamlscript_version=0.1.65 main() ( setup "$@" diff --git a/ys/src/yamlscript/cli.clj b/ys/src/yamlscript/cli.clj index 363fedf07..6ead617ab 100644 --- a/ys/src/yamlscript/cli.clj +++ b/ys/src/yamlscript/cli.clj @@ -19,7 +19,7 @@ [clojure.string :as str] [clojure.tools.cli :as cli])) -(def yamlscript-version "0.1.64") +(def yamlscript-version "0.1.65") (def testing (atom false)) diff --git a/ys/test/cli-usage.t b/ys/test/cli-usage.t index 93c5f1da1..805e3623e 100644 --- a/ys/test/cli-usage.t +++ b/ys/test/cli-usage.t @@ -2,7 +2,7 @@ source test/init -VERSION=0.1.64 +VERSION=0.1.65 cmd='ys --version'