diff --git a/Changes b/Changes index 43b692ae..d99bd0a8 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,30 @@ +- version: 0.1.70 + date: Sat 10 Aug 2024 12:53:19 AM PDT + changes: + - core: Add more functions to poly.clj + - test: Assume 'want:\ true' for 'code:' tests + - core: Add more classes and functions to runtime + - core: Make == compile to = + - std: Updates to std and add initial tests for std + - core: Support defn- for private functions + - release: Don't validate Changes YAML until reviewed + - core: Fix pair semantics for `case` and `condp` + - core: Fix bug for case and condp + - core: Add support for `map+`; coll.map('abc') + - std: Add reduce+ + - core: Allow `call` to take function as string + - core: Add a `!~` operator for not re-find + - core: Operator fixes and tests + - core: Add missing string escaped characters + - core: Improve error messages + - core: Transform binding and test forms for some fns + - www: Update the old blog post to current truths + - www: Renamed 2024 blog files to a better scheme + - core: Support Clojure set literals with \{...} + - core: Add partition to poly functions + - std: Make split("") -> [] + - core: Support _ arg positioning in block forms + - core: Support maps.map('key') - version: 0.1.69 date: Tue 30 Jul 2024 10:46:51 AM PDT changes: diff --git a/Meta b/Meta index 15395273..ae23715d 100644 --- a/Meta +++ b/Meta @@ -1,7 +1,7 @@ -=meta: 0.1.69 +=meta: 0.1.70 name: YAMLScript -version: 0.1.69 +version: 0.1.70 abstract: Program in YAML — Code is Data homepage: https://yamlscript.org license: mit diff --git a/ReadMe.md b/ReadMe.md index 06ddf844..d0739ac2 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.69` +* `VERSION=...` - The YAMLScript version to install. Default: `0.1.70` * `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 692b2cea..96f2c67b 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.69"}}} + org.yamlscript/yamlscript {:mvn/version "0.1.70"}}} diff --git a/clojure/project.clj b/clojure/project.clj index 1711a779..06f9031b 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.69" +(defproject org.yamlscript/clj-yamlscript "0.1.70" :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.69"]] + [org.yamlscript/yamlscript "0.1.70"]] :deploy-repositories [["releases" diff --git a/common/install.mk b/common/install.mk index ae3eec8f..39fd428d 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.69 +YAMLSCRIPT_VERSION := 0.1.70 YS := $(wildcard ys) LIBYAMLSCRIPT := $(firstword $(wildcard libyamlscript.*)) diff --git a/common/project.clj b/common/project.clj index aaf7ec79..c8e9ae9d 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.69" +(defproject yamlscript/docker "0.1.70" :description "Program in YAML — Code is Data" :dependencies [#__ diff --git a/common/release.md b/common/release.md index 4d1e8901..cd66df54 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.69 +## Changes in YAMLScript version 0.1.70 diff --git a/common/vars.mk b/common/vars.mk index f7e238f4..85a7a0c7 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.69 +BUILD_BIN_YS_VERSION := 0.1.70 BUILD_BIN_YS := $(BUILD_BIN)/ys-$(BUILD_BIN_YS_VERSION) diff --git a/core/project.clj b/core/project.clj index 661aadd5..ded1f466 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.69" +(defproject yamlscript/core "0.1.70" :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 b24cc33e..f2e12009 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.69") +(def ys-version "0.1.70") (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 9fe625de..cccff223 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.69 +ys - The YAMLScript (YS) Command Line Tool - v0.1.70 Usage: ys [] [] diff --git a/go/ReadMe.md b/go/ReadMe.md index 9bfde2ce..c697de10 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.69 +require github.com/yaml/yamlscript-go v0.1.70 ``` 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.69 +$ go get github.com/yaml/yamlscript-go@v0.1.70 ``` 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 c001b13c..13c8451a 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.69 +require github.com/yaml/yamlscript-go v0.1.70 ``` 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.69 +$ go get github.com/yaml/yamlscript-go@v0.1.70 ``` but you will need to have a system install of `libyamlscript.so`. diff --git a/go/yamlscript.go b/go/yamlscript.go index c74a66bb..606c2571 100644 --- a/go/yamlscript.go +++ b/go/yamlscript.go @@ -1,7 +1,7 @@ package yamlscript -// #cgo LDFLAGS: -lyamlscript.0.1.69 -// #include +// #cgo LDFLAGS: -lyamlscript.0.1.70 +// #include // #include import "C" import ( diff --git a/java/Makefile b/java/Makefile index dec1f301..de5fca5e 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.69.jar +YAMLSCRIPT_JAVA_JAR := target/yamlscript-0.1.70.jar #------------------------------------------------------------------------------ diff --git a/java/pom.xml b/java/pom.xml index 0f267c02..1288e7a0 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -12,7 +12,7 @@ yamlscript - 0.1.69 + 0.1.70 yamlscript diff --git a/java/src/main/java/org/yamlscript/yamlscript/YAMLScript.java b/java/src/main/java/org/yamlscript/yamlscript/YAMLScript.java index 40e66420..8d1abb30 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.69"; + public static String YAMLSCRIPT_VERSION = "0.1.70"; public static Object load(String ysCode) { diff --git a/julia/Project.toml b/julia/Project.toml index 6ece035e..fe468698 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.69" +version = "0.1.70" [deps] JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" diff --git a/julia/src/libyamlscript.jl b/julia/src/libyamlscript.jl index 12d7bdac..f664939c 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.69" +const YAMLSCRIPT_VERSION = "0.1.70" 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 9a90369c..19554849 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.69"}}, + yamlscript/compiler {:mvn/version "0.1.70"}}, :aliases {:lein2deps {:deps diff --git a/libyamlscript/project.clj b/libyamlscript/project.clj index 45b5d63c..f8e5fdcb 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.69" +(defproject yamlscript/libyamlscript "0.1.70" :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.69"]] + [yamlscript/core "0.1.70"]] :plugins [[lein-exec "0.3.7"] diff --git a/nodejs/lib/yamlscript/index.js b/nodejs/lib/yamlscript/index.js index c2dda66e..5b17bf5e 100644 --- a/nodejs/lib/yamlscript/index.js +++ b/nodejs/lib/yamlscript/index.js @@ -1,4 +1,4 @@ -const yamlscriptVersion = '0.1.69'; +const yamlscriptVersion = '0.1.70'; const ffi = require('ffi-napi'); const ref = require('ref-napi'); diff --git a/nodejs/package.json b/nodejs/package.json index fe79ec89..427c4762 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "@yaml/yamlscript", - "version": "0.1.69", + "version": "0.1.70", "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 7c537c9b..9a1a84f4 100644 --- a/perl-alien/Changes +++ b/perl-alien/Changes @@ -1,4 +1,10 @@ +--- +version: 0.1.70 +date: Sat 10 Aug 2024 12:53:19 AM PDT +changes: +- libyamlscript 0.1.70 + --- version: 0.1.69 date: Tue 30 Jul 2024 10:46:51 AM PDT diff --git a/perl-alien/Meta b/perl-alien/Meta index 7b0e7720..64b42565 100644 --- a/perl-alien/Meta +++ b/perl-alien/Meta @@ -3,7 +3,7 @@ base: ../Meta name: Alien-YAMLScript -version: 0.1.69 +version: 0.1.70 language: perl diff --git a/perl-alien/alienfile b/perl-alien/alienfile index 2f1fc843..6556539c 100644 --- a/perl-alien/alienfile +++ b/perl-alien/alienfile @@ -1,6 +1,6 @@ use alienfile; -my $libyamlscript_version = '0.1.69'; +my $libyamlscript_version = '0.1.70'; # 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 2378cade..e9ce9f85 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.69'; +our $VERSION = '0.1.70'; use parent 'Alien::Base'; diff --git a/perl/Changes b/perl/Changes index 945d81c8..3ffc499d 100644 --- a/perl/Changes +++ b/perl/Changes @@ -1,4 +1,10 @@ +--- +version: 0.1.70 +date: Sat 10 Aug 2024 12:53:19 AM PDT +changes: +- libyamlscript 0.1.70 + --- version: 0.1.69 date: Tue 30 Jul 2024 10:46:51 AM PDT diff --git a/perl/Meta b/perl/Meta index d9e69fd9..05ac45ce 100644 --- a/perl/Meta +++ b/perl/Meta @@ -3,7 +3,7 @@ base: ../Meta name: YAMLScript -version: 0.1.69 +version: 0.1.70 language: perl @@ -12,7 +12,7 @@ author: requires: perl: 5.16.0 - Alien::YAMLScript: 0.1.69 + Alien::YAMLScript: 0.1.70 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 c27825af..67c598a4 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.69'; +our $VERSION = '0.1.70'; our $libyamlscript_version = $VERSION; diff --git a/python/lib/yamlscript/__init__.py b/python/lib/yamlscript/__init__.py index 981f8028..ed7172bc 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.69' +yamlscript_version = '0.1.70' 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.69' + # eg 'libyamlscript.so.0.1.70' libyamlscript_name = \ "libyamlscript.%s.%s" % (so, yamlscript_version) diff --git a/python/setup.py b/python/setup.py index e247ef6c..d9d8d4ca 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,4 +1,4 @@ -version = '0.1.69' +version = '0.1.70' from setuptools import setup import pathlib diff --git a/raku/META6.json b/raku/META6.json index 0c0ab02e..58bb8392 100644 --- a/raku/META6.json +++ b/raku/META6.json @@ -1,6 +1,6 @@ { "api": 0 , "name": "YAMLScript" -, "version": "0.1.69" +, "version": "0.1.70" , "description": "Program in YAML — Code is Data" , "auth": "zef:ingy" , "provides": diff --git a/raku/lib/YAMLScript.rakumod b/raku/lib/YAMLScript.rakumod index 9e0ca41f..04bb7c3f 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.69; +constant YAMLSCRIPT_VERSION = v0.1.70; sub resolve-lib { state $ = do { diff --git a/ruby/ChangeLog.md b/ruby/ChangeLog.md index c90921c5..da9fcebc 100644 --- a/ruby/ChangeLog.md +++ b/ruby/ChangeLog.md @@ -1,3 +1,7 @@ +## [0.1.70] - 2024-08-10 + +- libyamlscript 0.1.70 + ## [0.1.69] - 2024-07-30 - libyamlscript 0.1.69 diff --git a/ruby/lib/yamlscript.rb b/ruby/lib/yamlscript.rb index 11acfca9..b0059e05 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.69' + YAMLSCRIPT_VERSION = '0.1.70' # 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 984358a6..d10d2aaa 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.69" + VERSION = "0.1.70" end diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 861d82fc..53025682 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -93,18 +93,18 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "serde" -version = "1.0.204" +version = "1.0.205" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" +checksum = "e33aedb1a7135da52b7c21791455563facbbcc43d0f0f66165b42c21b3dfb150" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.204" +version = "1.0.205" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" +checksum = "692d6f5ac90220161d6774db30c662202721e64aed9058d2c394f451261420c1" dependencies = [ "proc-macro2 1.0.86", "quote 1.0.36", @@ -113,9 +113,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.121" +version = "1.0.122" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ab380d7d9f22ef3f21ad3e6c1ebe8e4fc7a2000ccba2e4d71fc96f15b2cb609" +checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da" dependencies = [ "itoa", "memchr", @@ -181,7 +181,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "yamlscript" -version = "0.1.69" +version = "0.1.70" dependencies = [ "dlopen", "libc", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 7f0ddd7f..077c4d60 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yamlscript" -version = "0.1.69" +version = "0.1.70" edition = "2021" description = "Program in YAML — Code is Data" license = "MIT" diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 69994d9f..f30bffb4 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.69"; +const LIBYAMLSCRIPT_VERSION: &str = "0.1.70"; /// 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 68a3603a..d8cd3e7e 100755 --- a/util/YS +++ b/util/YS @@ -5,7 +5,7 @@ set -euo pipefail ( root=$(cd "$(dirname "${BASH_SOURCE[0]:-$0}")/.." && pwd -P) base=$root/ys - libyamlscript_version=0.1.69 + libyamlscript_version=0.1.70 jar=yamlscript.cli-$libyamlscript_version-SNAPSHOT-standalone.jar make --no-print-directory -C "$base" jar java -jar "$base/target/uberjar/$jar" "$@" diff --git a/www/src/index.md b/www/src/index.md index 642a0a01..c3764143 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.69 +ys - The YAMLScript (YS) Command Line Tool - v0.1.70 Usage: ys [] [] @@ -311,7 +311,7 @@ or: ```text $ ys --version -YAMLScript 0.1.69 +YAMLScript 0.1.70 ``` @@ -342,9 +342,9 @@ For Python you would do: ```bash $ pip install yamlscript -Successfully installed yamlscript-0.1.69 -$ curl https://yamlscript.org/install | VERSION=0.1.69 install -Installed ~/.local/lib/libyamlscript.so - version 0.1.69 +Successfully installed yamlscript-0.1.70 +$ curl https://yamlscript.org/install | VERSION=0.1.70 install +Installed ~/.local/lib/libyamlscript.so - version 0.1.70 ``` For some other language, use that language's library installer. diff --git a/www/src/install b/www/src/install index a97f66fa..488ecc18 100644 --- a/www/src/install +++ b/www/src/install @@ -9,7 +9,7 @@ set -e -u -o pipefail -LIBYAMLSCRIPT_VERSION=0.1.69 +LIBYAMLSCRIPT_VERSION=0.1.70 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 8e105ed2..f21f6ddd 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.69 +ys - The YAMLScript (YS) Command Line Tool - v0.1.70 Usage: ys [] [] diff --git a/www/src/posts/advent-2023/dec-07.md b/www/src/posts/advent-2023/dec-07.md index 5b5d4074..a3645707 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.69 +YAMLScript v0.1.70 ``` 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.69 +ys - The YAMLScript (YS) Command Line Tool - v0.1.70 Usage: ys [] [] diff --git a/ys/deps.edn b/ys/deps.edn index a7002582..82295928 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.69"}}, + yamlscript/core {:mvn/version "0.1.70"}}, :aliases {:lein2deps {:deps diff --git a/ys/project.clj b/ys/project.clj index d956cfd8..be58b3b9 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.69-SNAPSHOT" +(defproject yamlscript.cli "0.1.70-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.69"]] + [yamlscript/core "0.1.70"]] :main ^:skip-aot yamlscript.cli diff --git a/ys/share/ys-0.bash b/ys/share/ys-0.bash index d93f223a..346c2baa 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.69 +yamlscript_version=0.1.70 main() ( setup "$@" diff --git a/ys/src/yamlscript/cli.clj b/ys/src/yamlscript/cli.clj index fa1a0617..4ed03041 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.69") +(def yamlscript-version "0.1.70") (def testing (atom false)) diff --git a/ys/test/cli-usage.t b/ys/test/cli-usage.t index 1e51d80f..2bac61a1 100644 --- a/ys/test/cli-usage.t +++ b/ys/test/cli-usage.t @@ -2,7 +2,7 @@ source test/init -VERSION=0.1.69 +VERSION=0.1.70 cmd='ys --version'