diff --git a/Changes b/Changes index 276b394b..077a2b03 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,15 @@ +- version: 0.1.75 + date: Thu 05 Sep 2024 09:45:59 PM PDT + changes: + - util: Updates for 0.1.74 + - core: Change dot debug from .??? to .> + - std: Have sum ignore nils + - std: Refactor value and each + - std: Have 'each' return its evaluation like 'for' + - std: Add 'lines' and 'text' opposites + - core: Fix for string escapes + - std: Remove 'fun' alias for 'partial' + - core: Support YeS expr on LHS of YeS pair - version: 0.1.74 date: Mon 02 Sep 2024 10:23:14 PM PDT changes: diff --git a/Meta b/Meta index ae257f0f..f84d58c5 100644 --- a/Meta +++ b/Meta @@ -1,7 +1,7 @@ -=meta: 0.1.74 +=meta: 0.1.75 name: YAMLScript -version: 0.1.74 +version: 0.1.75 abstract: Program in YAML — Code is Data homepage: https://yamlscript.org license: mit diff --git a/ReadMe.md b/ReadMe.md index c98d8700..9644bad6 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -230,7 +230,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.74` +* `VERSION=...` - The YAMLScript version to install. Default: `0.1.75` * `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 b2918aaf..0b18942f 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.74"}}} + org.yamlscript/yamlscript {:mvn/version "0.1.75"}}} diff --git a/clojure/project.clj b/clojure/project.clj index 5581d23f..ec39bbe4 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.74" +(defproject org.yamlscript/clj-yamlscript "0.1.75" :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.74"]] + [org.yamlscript/yamlscript "0.1.75"]] :deploy-repositories [["releases" diff --git a/common/install.mk b/common/install.mk index ed508a2b..d90ea579 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.74 +YAMLSCRIPT_VERSION := 0.1.75 YS := $(wildcard ys) LIBYAMLSCRIPT := $(firstword $(wildcard libyamlscript.*)) diff --git a/common/project.clj b/common/project.clj index 7be1709b..e9f1cdac 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.74" +(defproject yamlscript/docker "0.1.75" :description "Program in YAML — Code is Data" :dependencies [#__ diff --git a/common/release.md b/common/release.md index 10005413..e6c43bc2 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.74 +## Changes in YAMLScript version 0.1.75 diff --git a/core/project.clj b/core/project.clj index e7ffc386..2dda523c 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.74" +(defproject yamlscript/core "0.1.75" :description "Program in YAML — Code is Data" :url "https://github.com/yaml/yamlscript" diff --git a/core/src/yamlscript/runtime.clj b/core/src/yamlscript/runtime.clj index b18ad28b..629167fb 100644 --- a/core/src/yamlscript/runtime.clj +++ b/core/src/yamlscript/runtime.clj @@ -29,7 +29,7 @@ [yamlscript.common :as common] [yamlscript.util :as util])) -(def ys-version "0.1.74") +(def ys-version "0.1.75") (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 99b67d2b..563610ea 100644 --- a/doc/ys.md +++ b/doc/ys.md @@ -13,7 +13,7 @@ Here's the `ys --help` output: ```text $ ys --help -ys - The YAMLScript (YS) Command Line Tool - v0.1.74 +ys - The YAMLScript (YS) Command Line Tool - v0.1.75 Usage: ys [] [] diff --git a/go/ReadMe.md b/go/ReadMe.md index 6f17eff4..1888c46a 100644 --- a/go/ReadMe.md +++ b/go/ReadMe.md @@ -92,7 +92,7 @@ $ ys --compile file.ys In `go.mod`: ```go -require github.com/yaml/yamlscript-go v0.1.74 +require github.com/yaml/yamlscript-go v0.1.75 ``` File `prog.go`: @@ -122,7 +122,7 @@ func main() { You can install this module like any other Go module: ```bash -$ go get github.com/yaml/yamlscript-go@v0.1.74 +$ go get github.com/yaml/yamlscript-go@v0.1.75 ``` 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 b3e1e762..8b61eb98 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.74 +require github.com/yaml/yamlscript-go v0.1.75 ``` 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.74 +$ go get github.com/yaml/yamlscript-go@v0.1.75 ``` but you will need to have a system install of `libyamlscript.so`. diff --git a/go/yamlscript.go b/go/yamlscript.go index 236940ef..66391dc8 100644 --- a/go/yamlscript.go +++ b/go/yamlscript.go @@ -1,7 +1,7 @@ package yamlscript -// #cgo LDFLAGS: -lyamlscript.0.1.74 -// #include +// #cgo LDFLAGS: -lyamlscript.0.1.75 +// #include // #include import "C" import ( diff --git a/java/Makefile b/java/Makefile index 38e0bc17..bf98ff48 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.74.jar +YAMLSCRIPT_JAVA_JAR := target/yamlscript-0.1.75.jar MVN_COMMANDS := \ compile \ diff --git a/java/pom.xml b/java/pom.xml index f9002755..f9ae6c5e 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -12,7 +12,7 @@ yamlscript - 0.1.74 + 0.1.75 yamlscript diff --git a/java/src/main/java/org/yamlscript/yamlscript/YAMLScript.java b/java/src/main/java/org/yamlscript/yamlscript/YAMLScript.java index 1abec34a..9e0e6e27 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.74"; + public static String YAMLSCRIPT_VERSION = "0.1.75"; public static Object load(String ysCode) { diff --git a/julia/Project.toml b/julia/Project.toml index 833c67f5..650180a9 100644 --- a/julia/Project.toml +++ b/julia/Project.toml @@ -1,7 +1,7 @@ name = "YAMLScript" uuid = "c6519b1f-f61a-46f8-9c82-37138c212585" authors = ["Ingy döt Net "] -version = "0.1.74" +version = "0.1.75" [deps] JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" diff --git a/julia/src/libyamlscript.jl b/julia/src/libyamlscript.jl index 5f970724..2ac2875d 100644 --- a/julia/src/libyamlscript.jl +++ b/julia/src/libyamlscript.jl @@ -2,7 +2,7 @@ module libyamlscript import Base.Libc: Libdl -const YAMLSCRIPT_VERSION = "0.1.74" +const YAMLSCRIPT_VERSION = "0.1.75" const libyamlscript_name = "libyamlscript.$(Libdl.dlext).$(YAMLSCRIPT_VERSION)" const libhandle = Ref{Ptr{Cvoid}}() const graal_create_isolate_fptr = Ref{Ptr{Cvoid}}() diff --git a/libyamlscript/deps.edn b/libyamlscript/deps.edn index 19f05a64..7af3d837 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.74"}}, + yamlscript/compiler {:mvn/version "0.1.75"}}, :aliases {:lein2deps {:deps diff --git a/libyamlscript/project.clj b/libyamlscript/project.clj index f2bd69e0..9c83f531 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.74" +(defproject yamlscript/libyamlscript "0.1.75" :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.74"]] + [yamlscript/core "0.1.75"]] :plugins [[lein-exec "0.3.7"] diff --git a/nodejs/lib/yamlscript/index.js b/nodejs/lib/yamlscript/index.js index 967db180..180f4e09 100644 --- a/nodejs/lib/yamlscript/index.js +++ b/nodejs/lib/yamlscript/index.js @@ -1,4 +1,4 @@ -const yamlscriptVersion = '0.1.74'; +const yamlscriptVersion = '0.1.75'; const ffi = require('ffi-napi'); const ref = require('ref-napi'); diff --git a/nodejs/package.json b/nodejs/package.json index 7b68c5b2..87fa2056 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "@yaml/yamlscript", - "version": "0.1.74", + "version": "0.1.75", "description": "Program in YAML — Code is Data", "main": "lib/yamlscript/index.js", "author": "Ingy döt Net", diff --git a/perl-alien/Changes b/perl-alien/Changes index 64115d72..cbe31408 100644 --- a/perl-alien/Changes +++ b/perl-alien/Changes @@ -1,4 +1,10 @@ +--- +version: 0.1.75 +date: Thu 05 Sep 2024 09:45:59 PM PDT +changes: +- libyamlscript 0.1.75 + --- version: 0.1.74 date: Mon 02 Sep 2024 10:23:14 PM PDT diff --git a/perl-alien/Meta b/perl-alien/Meta index 7c22a022..9208e451 100644 --- a/perl-alien/Meta +++ b/perl-alien/Meta @@ -3,7 +3,7 @@ base: ../Meta name: Alien-YAMLScript -version: 0.1.74 +version: 0.1.75 language: perl diff --git a/perl-alien/alienfile b/perl-alien/alienfile index 9e449818..7572e586 100644 --- a/perl-alien/alienfile +++ b/perl-alien/alienfile @@ -1,6 +1,6 @@ use alienfile; -my $libyamlscript_version = '0.1.74'; +my $libyamlscript_version = '0.1.75'; # 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 8594ac25..d99e6676 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.74'; +our $VERSION = '0.1.75'; use parent 'Alien::Base'; diff --git a/perl/Changes b/perl/Changes index 565672c2..f3e1472c 100644 --- a/perl/Changes +++ b/perl/Changes @@ -1,4 +1,10 @@ +--- +version: 0.1.75 +date: Thu 05 Sep 2024 09:45:59 PM PDT +changes: +- libyamlscript 0.1.75 + --- version: 0.1.74 date: Mon 02 Sep 2024 10:23:14 PM PDT diff --git a/perl/Meta b/perl/Meta index 696c113a..6115af9c 100644 --- a/perl/Meta +++ b/perl/Meta @@ -3,7 +3,7 @@ base: ../Meta name: YAMLScript -version: 0.1.74 +version: 0.1.75 language: perl @@ -12,7 +12,7 @@ author: requires: perl: 5.16.0 - Alien::YAMLScript: 0.1.74 + Alien::YAMLScript: 0.1.75 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 3e211f7d..5c691393 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.74'; +our $VERSION = '0.1.75'; our $libyamlscript_version = $VERSION; diff --git a/python/lib/yamlscript/__init__.py b/python/lib/yamlscript/__init__.py index f3b292a1..d253993b 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.74' +yamlscript_version = '0.1.75' 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.74' + # eg 'libyamlscript.so.0.1.75' libyamlscript_name = \ "libyamlscript.%s.%s" % (so, yamlscript_version) diff --git a/python/setup.py b/python/setup.py index a92af87f..26bfab76 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,4 +1,4 @@ -version = '0.1.74' +version = '0.1.75' from setuptools import setup import pathlib diff --git a/raku/META6.json b/raku/META6.json index 5bfd52de..ee8cfc24 100644 --- a/raku/META6.json +++ b/raku/META6.json @@ -1,6 +1,6 @@ { "api": 0 , "name": "YAMLScript" -, "version": "0.1.74" +, "version": "0.1.75" , "description": "Program in YAML — Code is Data" , "auth": "zef:ingy" , "provides": diff --git a/raku/lib/YAMLScript.rakumod b/raku/lib/YAMLScript.rakumod index ba563c96..2dddd0c1 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.74; +constant YAMLSCRIPT_VERSION = v0.1.75; sub resolve-lib { state $ = do { diff --git a/ruby/ChangeLog.md b/ruby/ChangeLog.md index 6bc21497..2d702472 100644 --- a/ruby/ChangeLog.md +++ b/ruby/ChangeLog.md @@ -1,3 +1,7 @@ +## [0.1.75] - 2024-09-05 + +- libyamlscript 0.1.75 + ## [0.1.74] - 2024-09-02 - libyamlscript 0.1.74 diff --git a/ruby/lib/yamlscript.rb b/ruby/lib/yamlscript.rb index 9595c438..4da0fca4 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.74' + YAMLSCRIPT_VERSION = '0.1.75' # 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 46520fd5..16dfb6a8 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.74" + VERSION = "0.1.75" end diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 53803901..1728115b 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -113,9 +113,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.127" +version = "1.0.128" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad" +checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" dependencies = [ "itoa", "memchr", @@ -181,7 +181,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "yamlscript" -version = "0.1.74" +version = "0.1.75" dependencies = [ "dlopen", "libc", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index aafaa17f..ab497379 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yamlscript" -version = "0.1.74" +version = "0.1.75" edition = "2021" description = "Program in YAML — Code is Data" license = "MIT" diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 8412a9df..5f7ac0b9 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.74"; +const LIBYAMLSCRIPT_VERSION: &str = "0.1.75"; /// The extension of the YAMLScript library. On Linux, it's a `.so` file. #[cfg(target_os = "linux")] diff --git a/util/YS b/util/YS index 736fc49e..19c47e6f 100755 --- a/util/YS +++ b/util/YS @@ -3,7 +3,7 @@ set -euo pipefail ( - libyamlscript_version=0.1.74 + libyamlscript_version=0.1.75 root=$(cd "$(dirname "${BASH_SOURCE[0]:-$0}")/.." && pwd -P) JAVA_HOME=$(make -C "$root/core" env | grep ^JAVA_HOME= | cut -d= -f2) export JAVA_HOME diff --git a/www/src/index.md b/www/src/index.md index f4dffe92..4d2f3c57 100644 --- a/www/src/index.md +++ b/www/src/index.md @@ -265,7 +265,7 @@ and `bash`. Test your new `ys` installation by running: ```text -ys - The YAMLScript (YS) Command Line Tool - v0.1.74 +ys - The YAMLScript (YS) Command Line Tool - v0.1.75 Usage: ys [] [] @@ -311,7 +311,7 @@ or: ```text $ ys --version -YAMLScript 0.1.74 +YAMLScript 0.1.75 ``` @@ -342,9 +342,9 @@ For Python you would do: ```bash $ pip install yamlscript -Successfully installed yamlscript-0.1.74 -$ curl https://yamlscript.org/install | VERSION=0.1.74 install -Installed ~/.local/lib/libyamlscript.so - version 0.1.74 +Successfully installed yamlscript-0.1.75 +$ curl https://yamlscript.org/install | VERSION=0.1.75 install +Installed ~/.local/lib/libyamlscript.so - version 0.1.75 ``` For some other language, use that language's library installer. diff --git a/www/src/install b/www/src/install index 884aa90e..cdd955d9 100644 --- a/www/src/install +++ b/www/src/install @@ -9,7 +9,7 @@ set -e -u -o pipefail -LIBYAMLSCRIPT_VERSION=0.1.74 +LIBYAMLSCRIPT_VERSION=0.1.75 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 00683e42..b4fafa59 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.74 +ys - The YAMLScript (YS) Command Line Tool - v0.1.75 Usage: ys [] [] diff --git a/www/src/posts/advent-2023/dec-07.md b/www/src/posts/advent-2023/dec-07.md index cde3c8c8..41ee4c8a 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.74 +YAMLScript v0.1.75 ``` 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.74 +ys - The YAMLScript (YS) Command Line Tool - v0.1.75 Usage: ys [] [] diff --git a/www/src/run-ys b/www/src/run-ys index 783a77bc..d1165915 100644 --- a/www/src/run-ys +++ b/www/src/run-ys @@ -3,7 +3,7 @@ set -euo pipefail main() { - local YAMLSCRIPT_VERSION=0.1.74 + local YAMLSCRIPT_VERSION=0.1.75 local INSTALL_DIR=/tmp/yamlscript-run-ys local bin file last prefix tty version ysbin diff --git a/ys/deps.edn b/ys/deps.edn index c954878a..6edac359 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.74"}}, + yamlscript/core {:mvn/version "0.1.75"}}, :aliases {:lein2deps {:deps diff --git a/ys/project.clj b/ys/project.clj index 9c578444..ab0179f9 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.74-SNAPSHOT" +(defproject yamlscript.cli "0.1.75-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.74"]] + [yamlscript/core "0.1.75"]] :main ^:skip-aot yamlscript.cli diff --git a/ys/share/ys-0.bash b/ys/share/ys-0.bash index 176440f1..f73646fe 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.74 +yamlscript_version=0.1.75 main() ( setup "$@" diff --git a/ys/src/yamlscript/cli.clj b/ys/src/yamlscript/cli.clj index d8d05f6f..b4011f6a 100644 --- a/ys/src/yamlscript/cli.clj +++ b/ys/src/yamlscript/cli.clj @@ -20,7 +20,7 @@ [clojure.stacktrace] [clojure.tools.cli :as cli])) -(def yamlscript-version "0.1.74") +(def yamlscript-version "0.1.75") (def testing (atom false)) diff --git a/ys/test/cli-usage.t b/ys/test/cli-usage.t index 4ab18a73..854249d5 100644 --- a/ys/test/cli-usage.t +++ b/ys/test/cli-usage.t @@ -4,7 +4,7 @@ require ys::taptest: test done -VERSION =: '0.1.74' +VERSION =: '0.1.75' ROOT =: -"$fs-dirname(FILE)/../.."