Skip to content

Commit 03280f6

Browse files
committed
release: 0.1.73
1 parent 011ed07 commit 03280f6

File tree

52 files changed

+99
-69
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+99
-69
lines changed

Changes

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
- version: 0.1.73
2+
date: Tue 27 Aug 2024 02:01:13 PM PDT
3+
changes:
4+
- core: Disallow `=` as function; replaced by `==`
5+
- core: Use `-` to escape YAML syntax at start of ysexpr
6+
- core: Add RUN dynamic var; mapping of runtime info
7+
- core: Refactor yamlscript.runtime
8+
- core: Support [a *b] destructuring syntax
9+
- core: Support add+ mul+ div+ t? f? t-or t-and ||| &&& |||= &&&= **= /=
10+
- core: Fixes for .map() and .mapv()
11+
- std: Fix value and call; can call string now
12+
- std: Rename short functions again
13+
- std: Support character ranges
14+
- std: Refactor casting functions
115
- version: 0.1.72
216
date: Fri 23 Aug 2024 05:42:19 PM PDT
317
changes:

Meta

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
=meta: 0.1.72
1+
=meta: 0.1.73
22

33
name: YAMLScript
4-
version: 0.1.72
4+
version: 0.1.73
55
abstract: Program in YAML — Code is Data
66
homepage: https://yamlscript.org
77
license: mit

ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ Make sure `~/.local/bin` is in your `PATH` environment variable.
230230
You can use the following environment variables to control the installation:
231231

232232
* `PREFIX=...` - The directory to install to. Default: `~/.local`
233-
* `VERSION=...` - The YAMLScript version to install. Default: `0.1.72`
233+
* `VERSION=...` - The YAMLScript version to install. Default: `0.1.73`
234234
* `BIN=1` - Only install the `PREFIX/bin/ys` command line tool.
235235
* `LIB=1` - Only install the `PREFIX/lib/libyamlscript` shared library.
236236
* `DEBUG=1` - Print the Bash commands that are being run.

clojure/deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
org.clojure/data.json {:mvn/version "2.4.0"},
55
org.json/json {:mvn/version "20240205"},
66
net.java.dev.jna/jna {:mvn/version "5.14.0"},
7-
org.yamlscript/yamlscript {:mvn/version "0.1.72"}}}
7+
org.yamlscript/yamlscript {:mvn/version "0.1.73"}}}

clojure/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-2024 Ingy dot Net
33

4-
(defproject org.yamlscript/clj-yamlscript "0.1.72"
4+
(defproject org.yamlscript/clj-yamlscript "0.1.73"
55
:description
66
"YAMLScript is a functional programming language whose syntax is encoded in
77
YAML."
@@ -23,7 +23,7 @@
2323
[org.clojure/data.json "2.4.0"]
2424
[org.json/json "20240205"]
2525
[net.java.dev.jna/jna "5.14.0"]
26-
[org.yamlscript/yamlscript "0.1.72"]]
26+
[org.yamlscript/yamlscript "0.1.73"]]
2727

2828
:deploy-repositories
2929
[["releases"

common/install.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SHELL := bash
33
ROOT := $(shell \
44
cd '$(abspath $(dir $(lastword $(MAKEFILE_LIST))))' && pwd -P)
55

6-
YAMLSCRIPT_VERSION := 0.1.72
6+
YAMLSCRIPT_VERSION := 0.1.73
77

88
YS := $(wildcard ys)
99
LIBYAMLSCRIPT := $(firstword $(wildcard libyamlscript.*))

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-2024 Ingy dot Net
33

4-
(defproject yamlscript/docker "0.1.72"
4+
(defproject yamlscript/docker "0.1.73"
55
:description "Program in YAML — Code is Data"
66
:dependencies
77
[#__

common/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ $ curl https://yamlscript.org/install | bash
1414
See [Installing YAMLScript](https://github.com/yaml/yamlscript/wiki/Installing-YAMLScript) for more detailed information.
1515

1616

17-
## Changes in YAMLScript version 0.1.72
17+
## Changes in YAMLScript version 0.1.73
1818

common/vars.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ endif
88

99
BUILD_BIN := $(YS_TMP)/bin
1010

11-
BUILD_BIN_YS_VERSION := 0.1.72
11+
BUILD_BIN_YS_VERSION := 0.1.73
1212

1313
BUILD_BIN_YS := $(BUILD_BIN)/ys-$(BUILD_BIN_YS_VERSION)
1414

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-2024 Ingy dot Net
33

4-
(defproject yamlscript/core "0.1.72"
4+
(defproject yamlscript/core "0.1.73"
55
:description "Program in YAML — Code is Data"
66

77
:url "https://github.com/yaml/yamlscript"

0 commit comments

Comments
 (0)